Passed
Pull Request — master (#10)
by George
02:33
created
src/Providers/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@  discard block
 block discarded – undo
11 11
 
12 12
     public function __construct(\Illuminate\Contracts\Foundation\Application $app)
13 13
     {
14
-        $this->configPath = realpath(__DIR__ . './../../config/scaffold.php');
14
+        $this->configPath = realpath(__DIR__.'./../../config/scaffold.php');
15 15
         parent::__construct($app);
16 16
     }
17 17
 
18 18
     public function boot()
19 19
     {
20
-        Code::addExtension('stub',  'vibro');
20
+        Code::addExtension('stub', 'vibro');
21 21
         $this->publishes([
22 22
             $this->configPath => config_path('scaffold.php'),
23 23
         ], 'Scaffold');
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
             ]);
29 29
         }
30 30
         $this->publishes([
31
-            realpath(__DIR__ . '/../stubs') => app_path('Scaffold/stubs')
31
+            realpath(__DIR__.'/../stubs') => app_path('Scaffold/stubs')
32 32
         ], 'Scaffold');
33 33
     }
34 34
     public function register()
Please login to merge, or discard this patch.