Skip to content

Commit 21a0b7d

Browse files
authored
Merge pull request #3 from freshbitsweb/analysis-8PnebR
Apply fixes from StyleCI
2 parents e04cfd8 + bf9d86d commit 21a0b7d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

config/laravel_log_enhancer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
'log_git_data' => false,
1515

1616
// You can specify the inputs from the user that should not be logged
17-
'ignore_input_fields' => ['password', 'confirm_password']
17+
'ignore_input_fields' => ['password', 'confirm_password'],
1818
];

src/LaravelLogEnhancerServiceProvider.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
class LaravelLogEnhancerServiceProvider extends ServiceProvider
88
{
99
/**
10-
* Publishes configuration file
11-
*
12-
* @return void
13-
*/
10+
* Publishes configuration file.
11+
*
12+
* @return void
13+
*/
1414
public function boot()
1515
{
1616
$this->publishes([
@@ -19,10 +19,10 @@ public function boot()
1919
}
2020

2121
/**
22-
* Make config publishment optional by merge the config from the package
23-
*
24-
* @return void
25-
*/
22+
* Make config publishment optional by merge the config from the package.
23+
*
24+
* @return void
25+
*/
2626
public function register()
2727
{
2828
$this->mergeConfigFrom(

src/LogEnhancer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace Freshbitsweb\LaravelLogEnhancer;
44

55
use Monolog\Processor\GitProcessor;
6-
use Monolog\Processor\MemoryUsageProcessor;
76
use Monolog\Processor\WebProcessor;
7+
use Monolog\Processor\MemoryUsageProcessor;
88

99
class LogEnhancer
1010
{

src/RequestDataProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class RequestDataProcessor
66
{
77
/**
8-
* Adds additional request data to the log message
8+
* Adds additional request data to the log message.
99
*/
1010
public function __invoke($record)
1111
{

0 commit comments

Comments
 (0)