我是laravel的新人。我试图在我的测试项目中创建一个用于创建表的自定义artisan
命令。我跟着this link但是我的命令不在工匠列表上。事件我尝试了在该链接中给出的相同示例但它也是没工作。我不知道为什么会这样。
我就是这样:
1)运行此命令php artisan make:console SendEmails
2)将完整的类代码放在app/Console/Commands/SendEmails.php
文件
<?php
namespace App\Console\Commands;
use App\User;
use App\DripEmailer;
use Illuminate\Console\Command;
class SendEmails extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'email:send {user}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Send drip e-mails to a user';
/**
* The drip e-mail service.
*
* @var DripEmailer
*/
protected $drip;
/**
* Create a new command instance.
*
* @param DripEmailer $drip
* @return void
*/
public function __construct(DripEmailer $drip)
{
parent::__construct();
$this->drip = $drip;
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$this->drip->send(User::find($this->argument('user')));
}
}
请帮我告诉我我做错了什么。
答案 0 :(得分:4)
您忘了注册命令。
这部分:https://laravel.com/docs/5.1/artisan#registering-commands。
打开app/Console/Kernel.php
并在$commands
数组中添加命令类。
protected $commands = [
Commands\SendEmails::class
];
那就是它。