@@ -7,7 +7,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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() |