Passed
Push — master ( b8941e...1629d7 )
by noitran
02:45
created
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
         } else {
35 35
             $publishPath = base_path('config/opendox.php');
36 36
         }
37
-        $this->publishes([$configPath => $publishPath], 'config');
37
+        $this->publishes([ $configPath => $publishPath ], 'config');
38 38
 
39
-        $this->app->router->group(['namespace' => 'Noitran\Opendox'], function ($router): void {
39
+        $this->app->router->group([ 'namespace' => 'Noitran\Opendox' ], function($router): void {
40 40
             require __DIR__ . '/routes/routes.php';
41 41
         });
42 42
     }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         $configPath = __DIR__ . '/../config/opendox.php';
52 52
         $this->mergeConfigFrom($configPath, 'opendox');
53 53
 
54
-        $this->app->singleton('command.opendox.transform-docs', function () {
54
+        $this->app->singleton('command.opendox.transform-docs', function() {
55 55
             return new TransformDocsCommand();
56 56
         });
57 57
 
Please login to merge, or discard this patch.