@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | /** |
| 5 | 5 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | /** |
| 35 | 35 | * for package configure |
| 36 | 36 | */ |
| 37 | - $configPath = __DIR__ . '/config/fluent.php'; |
|
| 37 | + $configPath = __DIR__.'/config/fluent.php'; |
|
| 38 | 38 | $this->mergeConfigFrom($configPath, 'fluent'); |
| 39 | 39 | $this->publishes([$configPath => config_path('fluent.php')], 'log'); |
| 40 | 40 | parent::register(); |
@@ -105,7 +105,6 @@ |
||
| 105 | 105 | /** |
| 106 | 106 | * Parse the string level into a Monolog constant. |
| 107 | 107 | * |
| 108 | - * @param array $config |
|
| 109 | 108 | * |
| 110 | 109 | * @throws \InvalidArgumentException |
| 111 | 110 | * |
@@ -97,7 +97,7 @@ |
||
| 97 | 97 | */ |
| 98 | 98 | protected function formatter() |
| 99 | 99 | { |
| 100 | - return tap(new LineFormatter(null, null, true, true), function ($formatter) { |
|
| 100 | + return tap(new LineFormatter(null, null, true, true), function($formatter) { |
|
| 101 | 101 | $formatter->includeStacktraces(); |
| 102 | 102 | }); |
| 103 | 103 | } |