Completed
Pull Request — master (#272)
by
unknown
04:44
created
src/LaravelModulesServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function setupStubPath()
58 58
     {
59
-        Stub::setBasePath(__DIR__ . '/Commands/stubs');
59
+        Stub::setBasePath(__DIR__.'/Commands/stubs');
60 60
 
61 61
         switch (get_class($this->app)) {
62 62
             // // Lumen doesn't support boot()
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                 }
67 67
                 break;
68 68
             default:
69
-                $this->app->booted(function ($app) {
69
+                $this->app->booted(function($app) {
70 70
                     if ($app['modules']->config('stubs.enabled') === true) {
71 71
                         Stub::setBasePath($app['modules']->config('stubs.path'));
72 72
                     }
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected function registerNamespaces()
82 82
     {
83
-        $configPath = __DIR__ . '/../config/config.php';
83
+        $configPath = __DIR__.'/../config/config.php';
84 84
 
85 85
         $this->mergeConfigFrom($configPath, 'modules');
86 86
         $this->publishes([
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     protected function registerServices()
95 95
     {
96
-        $this->app->singleton('modules', function ($app) {
96
+        $this->app->singleton('modules', function($app) {
97 97
             $path = $app['config']->get('modules.paths.modules');
98 98
 
99 99
             return new Repository($app, $path);
Please login to merge, or discard this patch.