@@ -32,10 +32,10 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | public function setupStubPath() |
| 34 | 34 | { |
| 35 | - $path = $this->app['config']->get('modules.stubs.path') ?? __DIR__ . '/Commands/stubs'; |
|
| 35 | + $path = $this->app['config']->get('modules.stubs.path') ?? __DIR__.'/Commands/stubs'; |
|
| 36 | 36 | Stub::setBasePath($path); |
| 37 | 37 | |
| 38 | - $this->app->booted(function ($app) { |
|
| 38 | + $this->app->booted(function($app) { |
|
| 39 | 39 | /** @var RepositoryInterface $moduleRepository */ |
| 40 | 40 | $moduleRepository = $app[RepositoryInterface::class]; |
| 41 | 41 | if ($moduleRepository->config('stubs.enabled') === true) { |
@@ -49,14 +49,14 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | protected function registerServices() |
| 51 | 51 | { |
| 52 | - $this->app->singleton(Contracts\RepositoryInterface::class, function ($app) { |
|
| 52 | + $this->app->singleton(Contracts\RepositoryInterface::class, function($app) { |
|
| 53 | 53 | $path = $app['config']->get('modules.paths.modules'); |
| 54 | 54 | |
| 55 | 55 | return new Laravel\LaravelFileRepository($app, $path); |
| 56 | 56 | }); |
| 57 | - $this->app->singleton(Contracts\ActivatorInterface::class, function ($app) { |
|
| 57 | + $this->app->singleton(Contracts\ActivatorInterface::class, function($app) { |
|
| 58 | 58 | $activator = $app['config']->get('modules.activator'); |
| 59 | - $class = $app['config']->get('modules.activators.' . $activator)['class']; |
|
| 59 | + $class = $app['config']->get('modules.activators.'.$activator)['class']; |
|
| 60 | 60 | |
| 61 | 61 | if ($class === null) { |
| 62 | 62 | throw InvalidActivatorClass::missingConfig(); |