所以我嘗試添加一個命令與工匠:「找不到命令」
php artisan command:make MailSendCommand
MailSendCommand.php被創建的文件。 我把它編輯成這樣:
class MailSendCommand extends Command {
protected $name = 'command:send-mail';
protected $description = 'Send mails to the users.';
public function __construct()
{
parent::__construct();
}
public function fire()
{
$this->info('Befehl wird ausgeführt');
}
...
在我的文件中開始/ artisan.php我加
Artisan::add(new MailSendCommand);
,但是當我輸入 'PHP的工匠命令:發送郵件' 它說:
Command "command:send-mail" is not defined.
這只是工作我的家用電腦(XAMPP)上,但不是我的活的服務器(PHP 5.5.15(CGI-FCGI))
上'php artisan clear:cache'和'php artisan dump-autoload'沒有幫助。