基本上我想从laravel命令调用存储库Repository.php上的方法。
Example\Storage\Repository.php
Example\Storage\RepositoryInerface.php
Example\Storage\RepositoryServiceProvider.php
我希望在命令构造函数中使用Interface,然后将其设置为受保护的变量。
在服务提供者中,我将Interface绑定到Repository类。
现在,在start / artisan.php中我写道:
Artisan::add(new ExampleCommand(new Repository());
我可以在这里使用界面吗?什么是正确的方法?我很困惑。
提前致谢。
编辑:澄清一下,它只能按现在的方式工作,但我不想在注册artisan命令时对具体类进行硬编码。
答案 0 :(得分:16)
您可以使用IoC容器的自动依赖注入功能:
Artisan::add(App::make('\Example\Commands\ExampleCommand'));
// or
Artisan::resolve('\Example\Commands\ExampleCommand');
如果ExampleCommand的构造函数接受一个具体的类作为其参数,那么它将自动注入。如果它依赖于接口,则需要告诉IoC容器在请求给定接口时使用特定的具体类。
具体(为简洁而忽略命名空间):
class ExampleCommand ... {
public function __construct(Repository $repo) {
}
}
Artisan::resolve('ExampleCommand');
接口(为简洁而忽略命名空间):
class ExampleCommand ... {
public function __construct(RepositoryInterface $repo) {
}
}
App::instance('RepositoryInterface', new Repository);
Artisan::resolve('ExampleCommand');
答案 1 :(得分:0)
您可以使用构造函数中的interface
来键入提示所依赖的对象,但是您必须使用类似下面的内容将具体类绑定到IoC
容器中的接口,因此它必须使用以下内容:工作。
App::bind('Example\Storage\RepositoryInerface', 'Example\Storage\Repository');
详细了解documentation。