conjecto / nemrod

Nemrod is a framework providing an abstraction layer for handling (consuming and producing) RDF in a Symfony2 project
http://conjecto.github.io/nemrod
Other
23 stars 6 forks source link

[Insight] Missing use statement should be avoided - in src/Conjecto/Nemrod/Manager.php, line 114 #5

Closed bdecarne closed 8 years ago

bdecarne commented 9 years ago

in src/Conjecto/Nemrod/Manager.php, line 114

The RepositoryFactory type hint resolves to the following classes: Conjecto\Nemrod\ResourceManager\RepositoryFactory or Doctrine\ORM\Repository\RepositoryFactory. Did you forget to add a corresponding use statement for one of them?

    }

    /**
     * @param RepositoryFactory $repo
     */
    public function setRepositoryFactory(RepositoryFactory $repo)
    {
        $this->repositoryFactory = $repo;
    }

    /**

Posted from SensioLabsInsight