Completed
Push — master ( 032b1f...ab508c )
by Nicolas
25s queued 11s
created
src/LaravelModulesServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.