@@ -40,6 +40,9 @@ |
||
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | + /** |
|
| 44 | + * @param string $directory |
|
| 45 | + */ |
|
| 43 | 46 | private function loadConfigs($directory) |
| 44 | 47 | { |
| 45 | 48 | if (File::isDirectory($directory)) { |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use App; |
| 6 | 6 | use App\Port\Butler\Portals\Facade\PortButler; |
| 7 | -use DB; |
|
| 8 | 7 | use File; |
| 9 | 8 | |
| 10 | 9 | /** |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use App; |
| 6 | 6 | use App\Port\Butler\Portals\Facade\PortButler; |
| 7 | -use DB; |
|
| 8 | 7 | use File; |
| 9 | 8 | |
| 10 | 9 | /** |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | |
| 50 | 50 | private function loadMigrations($directory) |
| 51 | 51 | { |
| 52 | - App::afterResolving('migrator', function ($migrator) use ($directory) { |
|
| 52 | + App::afterResolving('migrator', function($migrator) use ($directory) { |
|
| 53 | 53 | foreach ((array)$directory as $path) { |
| 54 | 54 | $migrator->path($path); |
| 55 | 55 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('failed_jobs', function (Blueprint $table) { |
|
| 16 | + Schema::create('failed_jobs', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->text('connection'); |
| 19 | 19 | $table->text('queue'); |