@@ -34,9 +34,9 @@ discard block |
||
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 |
||
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 |