@@ -3,13 +3,9 @@ |
||
| 3 | 3 | namespace Developtech\AgilityBundle\Manager; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManager; |
| 6 | - |
|
| 7 | 6 | use Developtech\AgilityBundle\Entity\Project; |
| 8 | - |
|
| 9 | 7 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
| 10 | - |
|
| 11 | 8 | use Symfony\Component\Security\Core\User\UserInterface; |
| 12 | - |
|
| 13 | 9 | use Developtech\AgilityBundle\Utils\Slugger; |
| 14 | 10 | |
| 15 | 11 | class ProjectManager { |
@@ -3,12 +3,9 @@ |
||
| 3 | 3 | namespace Developtech\AgilityBundle\Manager; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManager; |
| 6 | - |
|
| 7 | 6 | use Developtech\AgilityBundle\Model\ProjectModel; |
| 8 | 7 | use Developtech\AgilityBundle\Model\FeatureModel; |
| 9 | - |
|
| 10 | 8 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
| 11 | - |
|
| 12 | 9 | use Developtech\AgilityBundle\Utils\Slugger; |
| 13 | 10 | |
| 14 | 11 | class FeatureManager { |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | - * @param ProjectModel $project |
|
| 52 | + * @param ProjectModel $project |
|
| 53 | 53 | * @param string $name |
| 54 | 54 | * @param string $description |
| 55 | 55 | * @param integer $status |
@@ -3,13 +3,9 @@ |
||
| 3 | 3 | namespace Developtech\AgilityBundle\Manager; |
| 4 | 4 | |
| 5 | 5 | use Doctrine\ORM\EntityManager; |
| 6 | - |
|
| 7 | 6 | use Developtech\AgilityBundle\Entity\Project; |
| 8 | - |
|
| 9 | 7 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
| 10 | - |
|
| 11 | 8 | use Symfony\Component\Security\Core\User\UserInterface; |
| 12 | - |
|
| 13 | 9 | use Developtech\AgilityBundle\Utils\Slugger; |
| 14 | 10 | |
| 15 | 11 | class ProjectManager { |
@@ -41,13 +41,13 @@ |
||
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | - * @param ProjectModel $project |
|
| 45 | - * @param UserInterface $author |
|
| 46 | - * @param array $orderBy |
|
| 47 | - * @param integer $limit |
|
| 48 | - * @param integer $offset |
|
| 49 | - * @return array |
|
| 50 | - */ |
|
| 44 | + * @param ProjectModel $project |
|
| 45 | + * @param UserInterface $author |
|
| 46 | + * @param array $orderBy |
|
| 47 | + * @param integer $limit |
|
| 48 | + * @param integer $offset |
|
| 49 | + * @return array |
|
| 50 | + */ |
|
| 51 | 51 | public function getProjectFeedbacksByAuthor(ProjectModel $project, UserInterface $author, $orderBy = null, $limit = null, $offset = null) { |
| 52 | 52 | return $this->em->getRepository($this->feedbackClass)->findBy([ |
| 53 | 53 | 'project' => $project, |