Laravel 创建服务提供者参数 1 必须实现服务提供者

Laravel Creating Service provider argument 1 must implement service provider

您好,我正在创建一个自定义缓存服务 class,它将缓存层从我的存储库中抽象出来。但是我 运行 遇到了一些麻烦,因为我遇到了这个错误:

Argument 1 passed to Task::__construct() must implement interface MyApp\Cache\CacheInterface, none given, called in /var/www/app/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 792 and defined

我的class是这样的:

<?php namespace MyApp\Cache;

use Illuminate\Cache\CacheManager;

class CacheService {

 /**
  * @var Illuminate\Cache\CacheManager
  */
  protected $cache;

  /**
   * @var integer
   */
  protected $minutes;

  /**
   * Construct
   *
   * @param Illuminate\Cache\CacheManager $cache
   * @param string $tag
   * @param integer $minutes
   */
  public function __construct(CacheManager $cache, $minutes = 60)
  {
    $this->cache = $cache;
    $this->tag = $tag;
    $this->minutes = $minutes;
  }

  /**
   * Get
   *
   * @param string $key
   * @return mixed
   */
  public function get($key)
  {
    return $this->cache->tags($this->tag)->get($key);
  }

  /**
   * Put
   *
   * @param string $key
   * @param mixed $value
   * @param integer $minutes
   * @return mixed
   */
  public function put($key, $value, $minutes = null)
  {
    if( is_null($minutes) )
    {
      $minutes = $this->minutes;
    }

    return $this->cache->tags($this->tag)->put($key, $value, $minutes);
  }

  /**
   * Has
   *
   * @param string $key
   * @return bool
   */
  public function has($key)
  {
    return $this->cache->tags($this->tag)->has($key);
  }

}

在我的模型中有以下内容;

<?php
use Abstracts\Model as AbstractModel;
use Illuminate\Support\Collection;
use CMS\APIv2\Objects\Entity;
use MyApp/Cache\CacheInterface;

class SprintTask extends AbstractModel
{


    /**
     * @var CacheInterface
     */
    protected $cache;

    public function __construct(CacheInterface $cache)
    {
        $this->cache = $cache;
    }


public static function scopegetAssignedSprint($id) {
    $key = md5('id.'.$id.get_class());

    if($this->cache->has($key))
    {
        return $this->cache->get($key);
    }

    $user = static::where('uid', $id)->lists('sprint_id');

    $this->cache->put($key, $user);

    return $user;
}

我有一个缓存服务提供商,如下所示;

<?php
namespace MyApp\Cache;

use MyApp\Cache\CacheInterface;
use Illuminate\Support\ServiceProvider;

class CacheServiceProvider extends ServiceProvider
{

    /**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    protected $defer = false;

    /**
     * Register
     */
    public function register()
    {

        $this->app->bind
        ('MyApp\Cache\CacheInterface',
            'MyApp\Cache\CacheService');

    }


}

关于如何正确设置此服务提供商以便在任何 mode/controller/repo 等中使用的想法?

当服务容器尝试实例化 TaskRepository 时,它发现其构造函数参数之一是 class CacheService[=44= 的对象].因此,它首先尝试实例化此对象,以便稍后可以将其传递给 TaskRepository 构造函数。

您的 CacheService 定义了两个必需的参数。当 Container 尝试实例化 CacheService 时,它需要为这两个属性提供值并将它们传递给构造函数。服务容器通常使用构造函数参数的类型提示来识别应该注入什么服务。在您的情况下,您需要传递 $tag 变量,但由于它在构造函数签名中没有类型提示,因此服务容器不知道应该将什么传递给构造函数。

这就是您收到错误的原因 - 它只是说服务容器无法解析 CacheService class.[=11 的必需依赖项之一=]

这个问题有多种解决方案。

首先,您需要向 $tags 参数添加类型提示。

如果 $tags 是服务容器能够实例化的某些 class 的对象,请将类型提示添加到 CacheService 构造函数签名。

如果实例化 $tags 对象是您想自己处理的事情,请在您的服务提供商之一中创建对象并使用容器的 bind( ) 方法。

如果 $tags 是容器无法管理和注入的东西,您需要自己实例化 CacheService 并使用 bind() 绑定它.

如果 $tags 是服务容器无法管理的东西,例如数组,您需要自己实例化 TaskRepository,而不是通过服务容器。

您可以在 Laravel 此处阅读有关依赖注入的更多信息:http://laravel.com/docs/5.0/container

你试过这样做吗:

<?php
namespace MyApp\Cache;

use MyApp\Cache\CacheInterface;
use Illuminate\Support\ServiceProvider;
use Illuminate\Cache\CacheManager;

class CacheServiceProvider extends ServiceProvider
{

    /**
     * Indicates if loading of the provider is deferred.
     *
     * @var bool
     */
    protected $defer = false;

    /**
     * Register
     */
    public function register()
    {

        $this->app->bind('MyApp\Cache\CacheInterface',function(){
            return new CacheService(CacheManager $cache);
        });

    }
}

我刚刚根据旅行评论更新了它

您试图将实现 CacheInterface 的实例注入 SprintTask,但在您的服务提供商中,您提供的 CacheService 实例未实现 CacheInterface.

您需要在 CashService 中实现该接口,以便能够将其传递给 SpringTask:

class CacheService implements CacheInterface

简而言之,您不能在 Eloquent 模型上使用依赖注入。 IoC 魔法对它们不起作用,并且由于您的 AbstractModel 扩展了 Eloquent 模型 class,因此 IoC 魔法在这里不起作用。 (Taylor Otwell 的部分解释 -- https://github.com/laravel/framework/issues/3862#issuecomment-37364543

有几种方法可以使这个基本想法发挥作用:

(1) 为模型使用存储库并在那里注入您的 CacheService。由于 Eloquent 是一个类似于存储库的 ORM,因此这可能会令人困惑和乏味。

(2) 通过新的 Facade 注册您的 CacheService 并像 Laravel 的内置 Cache facade 一样使用它,直接在您的模型中使用而无需注入 -- MyCache::has($key)。如果您永远不需要连接到两个不同的缓存,则可以将其设置为单例。 (L4: http://laravel.com/docs/4.2/facades, L5: http://laravel.com/docs/5.1/facades)

(3) 使用#1 和#2 的组合,如下所述:http://dfg.gd/blog/decoupling-your-code-in-laravel-using-repositiories-and-services