Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/laravel_log_enhancer.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
'log_git_data' => false,

// You can specify the inputs from the user that should not be logged
'ignore_input_fields' => ['password', 'confirm_password']
'ignore_input_fields' => ['password', 'confirm_password'],
];
16 changes: 8 additions & 8 deletions src/LaravelLogEnhancerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
class LaravelLogEnhancerServiceProvider extends ServiceProvider
{
/**
* Publishes configuration file
*
* @return void
*/
* Publishes configuration file.
*
* @return void
*/
public function boot()
{
$this->publishes([
Expand All @@ -19,10 +19,10 @@ public function boot()
}

/**
* Make config publishment optional by merge the config from the package
*
* @return void
*/
* Make config publishment optional by merge the config from the package.
*
* @return void
*/
public function register()
{
$this->mergeConfigFrom(
Expand Down
2 changes: 1 addition & 1 deletion src/LogEnhancer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Freshbitsweb\LaravelLogEnhancer;

use Monolog\Processor\GitProcessor;
use Monolog\Processor\MemoryUsageProcessor;
use Monolog\Processor\WebProcessor;
use Monolog\Processor\MemoryUsageProcessor;

class LogEnhancer
{
Expand Down
2 changes: 1 addition & 1 deletion src/RequestDataProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class RequestDataProcessor
{
/**
* Adds additional request data to the log message
* Adds additional request data to the log message.
*/
public function __invoke($record)
{
Expand Down