Completed
Push — master ( 620665...43f941 )
by George
13:20 queued 11:16
created
src/Providers/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 class ServiceProvider extends \Illuminate\Support\ServiceProvider
9 9
 {
10
-    const CONFIG_PATH = realpath(__DIR__ . './../../config/scaffold.php');
10
+    const CONFIG_PATH = realpath(__DIR__.'./../../config/scaffold.php');
11 11
 
12 12
     protected $configPath;
13 13
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     public function boot()
22 22
     {
23
-        Code::addExtension('stub',  'vibro');
23
+        Code::addExtension('stub', 'vibro');
24 24
         $this->publishes([
25 25
             self::CONFIG_PATH => config_path('scaffold.php'),
26 26
         ], 'config');
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             ]);
32 32
         }
33 33
         $this->publishes([
34
-            realpath(__DIR__ . '/../stubs') => app_path('Scaffold/stubs')
34
+            realpath(__DIR__.'/../stubs') => app_path('Scaffold/stubs')
35 35
         ], 'Scaffold Stubs');
36 36
     }
37 37
     public function register()
Please login to merge, or discard this patch.