Passed
Push — master ( 192ad0...7a9b3c )
by yuuki
42s
created
src/LogServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
 {
27 27
     protected function resolveLogManager(): void
28 28
     {
29
-        $configPath = __DIR__ . '/config/fluent.php';
29
+        $configPath = __DIR__.'/config/fluent.php';
30 30
         $this->mergeConfigFrom($configPath, 'fluent');
31 31
         $this->publishes([$configPath => config_path('fluent.php')], 'log');
32
-        $this->app->singleton(FluentLogManager::class, function ($app) {
32
+        $this->app->singleton(FluentLogManager::class, function($app) {
33 33
             return new FluentLogManager($app);
34 34
         });
35 35
     }
Please login to merge, or discard this patch.