我在命令中创建了一个新类。在App \ Console \ Commands;
文件夹中<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class Schedular extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'log:Schedular';
/**
* The console command description.
*
* @var string
*/
protected $description = 'schadular';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
return $schedule->call('Schedular@schedule')->everyMinute();
}
}
在kern.php中我编写了以下代码
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use \App\Controllers;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
'App\Console\Commands\Schedular'
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
return $schedule->call('')->everyMinute();
}
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
require base_path('routes/console.php');
}
}
我应该在这里写控制器类吗?或者我该怎么写?
return $schedule->call('')->everyMinute();
或者我应该创建一个与控制器具有相同功能的新类?
答案 0 :(得分:2)
您应该将控制器视为应用程序的传输层。任何实际的功能逻辑都应该进入您的域类。
尝试以其消耗的方式重构控制器功能,例如,服务类。然后创建一个使用相同服务类的命令类,提供另一种触发功能的方法。
这样,您就拥有了封装在服务类中的功能。控制器和命令类都只是消耗该类作为传输方式; HTTP请求和CLI命令。
完成重构后,您可以安排命令每分钟运行一次。