在Laravel 4中,我有几个接口,目前绑定到Eloquent存储库。在我的控制器中,我做了:
use Acme\Repositories\User\UserRepository;
class UserController extends BaseController {
/**
* @var UserRepository
*/
protected $users;
public function __construct(UserRepository $users)
{
$this->users = $users;
}
然后,我可以使用Eloquent访问我的自定义方法来获取数据。
但是,我如何在自己的课程中这样做?
use Acme\Repositories\Notification\NotificationRepository;
use Acme\Services\ServiceInterface;
class HipChatService implements ServiceInterface {
protected $notifications;
public function __construct(NotificationRepository $notifications)
{
$this->notifications = $notifications;
}
在路线中测试:
use Acme\Services\HipChat\HipChatService;
Route::get('hipchat', function()
{
$h = new HipChatService();
});
然后我得到错误:
Argument 1 passed to Acme\Services\HipChat\HipChatService::__construct() must be an instance of Acme\Repositories\Notification\NotificationRepository, none given
现在我理解为什么会发生这种情况,但是我应该如何在我自己的类中使用存储库?如果没有这种情况,我怎么能调用控制器+方法呢?
干杯
答案 0 :(得分:1)
如果您希望Laravel解决您的依赖关系,您必须使用App::make
构建对象,而不是使用new手动实现instanciate。
$myInstance = App::make('Acme\Services\HipChat\HipChatService');