@@ -11,13 +11,13 @@ discard block |
||
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 |
||
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 | } |