Completed
Push — master ( db449f...f667dd )
by George
04:28 queued 02:06
created
src/Providers/ServiceProvider.php 1 patch
Spacing   +4 added lines, -4 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
         ], 'config');
@@ -28,14 +28,14 @@  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 Stubs');
33 33
     }
34 34
     public function register()
35 35
     {
36 36
 
37 37
         $this->mergeConfigFrom(
38
-            realpath(__DIR__ . './../../config/scaffold.php'),
38
+            realpath(__DIR__.'./../../config/scaffold.php'),
39 39
             'scaffold'
40 40
         );
41 41
     }
Please login to merge, or discard this patch.