%PDF- %PDF-
Direktori : /var/www/html/workeasy-api/app/Console/ |
Current File : /var/www/html/workeasy-api/app/Console/Kernel.php |
<?php namespace Workeasy\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; use Workeasy\Console\Commands\SendEmailForPendingCandidates; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [SendEmailForPendingCandidates::class]; /** * Define the application's command schedule. * * @param \Illuminate\Console\Scheduling\Schedule $schedule * * @return void */ protected function schedule(Schedule $schedule) { // $schedule->command('email:send') // ->hourly(); } /** * Register the Closure based commands for the application. * * @return void */ protected function commands() { require base_path('routes/console.php'); } }