Start update to laravel 6.4

This commit is contained in:
Deon George
2019-11-08 23:08:34 +11:00
parent c723807b3f
commit a91ddbe66e
249 changed files with 89623 additions and 1604 deletions

View File

@@ -13,15 +13,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
Commands\CatalogScan::class,
Commands\CatalogDump::class,
Commands\PhotoImport::class,
Commands\PhotoMove::class,
Commands\PhotoScanAll::class,
Commands\PhotoUpdate::class,
Commands\VideoImport::class,
Commands\VideoMove::class,
Commands\VideoScanAll::class,
//
];
/**
@@ -35,4 +27,16 @@ class Kernel extends ConsoleKernel
// $schedule->command('inspire')
// ->hourly();
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}