Skip to content
This repository has been archived by the owner on May 1, 2019. It is now read-only.

Commit

Permalink
Fix: Just import parent namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Mar 4, 2015
1 parent 697780e commit 9798664
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
namespace Application\Controller;

use Application\Entity;
use Application\Service\RepositoryRetriever;
use Application\Service;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;

class ContributorsController extends AbstractActionController
{
/**
* @var RepositoryRetriever
* @var Service\RepositoryRetriever
*/
private $repositoryRetriever;

Expand All @@ -20,10 +20,10 @@ class ContributorsController extends AbstractActionController
private $repository;

/**
* @param RepositoryRetriever $repositoryRetriever
* @param Service\RepositoryRetriever $repositoryRetriever
* @param Entity\Repository $repository
*/
public function __construct(RepositoryRetriever $repositoryRetriever, Entity\Repository $repository)
public function __construct(Service\RepositoryRetriever $repositoryRetriever, Entity\Repository $repository)
{
$this->repositoryRetriever = $repositoryRetriever;
$this->repository = $repository;
Expand Down

0 comments on commit 9798664

Please sign in to comment.