我想做个定时任务,需要用到app\Console下的kernel.php来定义定时任务,我在schedule方法里面用的是
protected $commands = [
\App\Console\Commands\Inspire::class,
\App\Console\Commands\ToOrder::class, // 这是我注册的类
];
protected function schedule(Schedule $schedule)
{
$schedule->command('inspire') ->hourly();
$schedule->command('to_order')->everyMinute();
}
然而在 \App\Console\Commands\ToOrder这个类中的handle方法中我无法获取我已设置好的session('uid')。为什么?请问怎么获取到session('uid')?