Completed
Pull Request — master (#24)
by
unknown
05:44
created
src/LogServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/CreateFluentLogger.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.