基本上我想从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命令时硬编码具体类。
您可以使用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');
您可以使用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');
你可以使用 interface
在构造函数中键入提示所依赖的对象,但您必须将具体类绑定到该接口中 IoC
容器使用类似下面的东西,所以它会工作。
App::bind('Example\Storage\RepositoryInerface', 'Example\Storage\Repository');
阅读更多内容 文件。