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

Commit 29ac5ed

Browse files
committed
Fix: Just import parent namespace
1 parent 2e5e902 commit 29ac5ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

module/Application/src/Application/Controller/ContributorsController.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
namespace Application\Controller;
44

55
use Application\Entity;
6-
use Application\Service\RepositoryRetriever;
6+
use Application\Service;
77
use Zend\Mvc\Controller\AbstractActionController;
88
use Zend\View\Model\ViewModel;
99

1010
class ContributorsController extends AbstractActionController
1111
{
1212
/**
13-
* @var RepositoryRetriever
13+
* @var Service\RepositoryRetriever
1414
*/
1515
private $repositoryRetriever;
1616

@@ -20,10 +20,10 @@ class ContributorsController extends AbstractActionController
2020
private $repository;
2121

2222
/**
23-
* @param RepositoryRetriever $repositoryRetriever
23+
* @param Service\RepositoryRetriever $repositoryRetriever
2424
* @param Entity\Repository $repository
2525
*/
26-
public function __construct(RepositoryRetriever $repositoryRetriever, Entity\Repository $repository)
26+
public function __construct(Service\RepositoryRetriever $repositoryRetriever, Entity\Repository $repository)
2727
{
2828
$this->repositoryRetriever = $repositoryRetriever;
2929
$this->repository = $repository;

0 commit comments

Comments
 (0)