@@ -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 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | /** |
4 | 4 | * Created by PhpStorm. |
5 | 5 | * User: christopherfuchs |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | protected function formatter() : FormatterInterface |
101 | 101 | { |
102 | - return tap(new LineFormatter(null, null, true, true), function ($formatter) { |
|
102 | + return tap(new LineFormatter(null, null, true, true), function($formatter) { |
|
103 | 103 | $formatter->includeStacktraces(); |
104 | 104 | }); |
105 | 105 | } |