包命令的依赖注入

时间:2015-01-08 17:35:35

标签: laravel ioc-container artisan

我正在为我的包创建一个命令。

我的构造函数是:

public function __construct(\Artisan $artisan)
{
    parent::__construct();

    $this->artisan = $artisan;
}

当然,受保护的$artisan属性存在。

在我的服务提供者register()方法中,我尝试了几种注册命令的方法。

首先:

$this->app['custom.command'] = $this->app->share(function ($app)
{
    return new CustomCommand(new \Artisan);
});
$this->commands('custom.command');

第二

$this->app['custom.command'] = $this->app->share(function ($app)
{
    return $app->make('CustomCommand');
});
$this->commands('custom.command');

通常,它应该有效。但是当我运行命令时,只要在Call to undefined method Illuminate\Support\Facades\Artisan::call()方法中运行$this->artisan->call('migrate'),我就会收到fire()错误消息。

但是当我写\Artisan::call('migrate')而不是$this->artisan->call('migrate')时,一切正常。

有人知道我做错了吗?

提前致谢。

1 个答案:

答案 0 :(得分:1)

我认为问题在于你注入的是Artisan的外观,而不是Artisan本身。

尝试

public function __construct(Illuminate\Foundation\Artisan $artisan)

并在您的服务提供商中:

return new CustomCommand($app['artisan']);