流明制造:命令
我正在尝试通过命令行在我的Lumen安装中执行代码。在完整的Laravel中,我已经读到你可以使用命令通过“make:command”来实现这一点,但是Lumen似乎不支持这个命令。
是否无论如何都要启用此命令?如果做不到这一点,在Lumen中运行CLI代码的最佳方法是什么?
谢谢
我正在尝试通过命令行在我的Lumen安装中执行代码。在完整的Laravel中,我已经读到你可以使用命令通过“make:command”来实现这一点,但是Lumen似乎不支持这个命令。
是否无论如何都要启用此命令?如果做不到这一点,在Lumen中运行CLI代码的最佳方法是什么?
谢谢
下面是新命令的模板。您只需将其复制并粘贴到新文件中即可开始工作。我在流明5.7.0上测试了它
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class CommandName extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'commandSignature';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->info('hello world.');
}
}
然后在内核.php文件上注册它。
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
\App\Console\Commands\CommandName::class
];