@@ -110,10 +110,10 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | protected function registerConfig() |
| 112 | 112 | { |
| 113 | - $this->publishes([__DIR__ .'/../config/control.php' => config_path('control.php'), |
|
| 113 | + $this->publishes([__DIR__.'/../config/control.php' => config_path('control.php'), |
|
| 114 | 114 | ], 'config'); |
| 115 | 115 | $this->mergeConfigFrom( |
| 116 | - __DIR__ .'/../config/control.php', 'control' |
|
| 116 | + __DIR__.'/../config/control.php', 'control' |
|
| 117 | 117 | ); |
| 118 | 118 | } |
| 119 | 119 | |
@@ -125,13 +125,13 @@ discard block |
||
| 125 | 125 | public function registerFactories() |
| 126 | 126 | { |
| 127 | 127 | if (!app()->environment('production') && class_exists(\Faker\Factory::class)) { |
| 128 | - $this->app->make(Factory::class)->load(__DIR__ .'/../database/factories'); |
|
| 128 | + $this->app->make(Factory::class)->load(__DIR__.'/../database/factories'); |
|
| 129 | 129 | } |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | public function registerMigrations() |
| 133 | 133 | { |
| 134 | - $this->loadMigrationsFrom(__DIR__ . '/../database/migrations'); |
|
| 134 | + $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | public function bindContracts() |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | Route::prefix(config('control.api_prefix')) |
| 256 | 256 | ->middleware(config('control.api_middleware')) |
| 257 | 257 | ->namespace('BristolSU\ControlDB\Http\Controllers') |
| 258 | - ->group(__DIR__ . '/../routes/api.php'); |
|
| 258 | + ->group(__DIR__.'/../routes/api.php'); |
|
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | |