配置和测试 Laravel 任务调度环境描述尝试问题
环境
-
拉拉维尔版本 : 5.1.45 (LTS)
-
PHP 版本 : 5.6.1
描述
我正在尝试使用Laravel任务调度每1分钟运行一次命令。
尝试
我已将此行添加到我的 cron 选项卡文件中
* * * * * php artisan schedule:run >> /dev/null 2>&1
这是我的/app/Console/Kernel.php
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
\App\Console\Commands\Inspire::class,
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('inspire')->hourly();
$schedule->command('echo "Happy New Year!" ')->everyMinute(); //<---- ADD HERE }
}
我添加了此行$schedule->command('echo "Happy New Year!" ')->everyMinute();
问题
如何测试?
如何触发回声显示?
我怎么知道我所做的是否没有错?