Completed
Push — develop ( b322d1...651cee )
by Axel
8s
created
Manager/ProjectManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     protected $projectClass;
22 22
 
23 23
     /**
24
-     * @param Doctrine\ORM\EntityManager $em
24
+     * @param EntityManager $em
25 25
      */
26 26
     public function __construct(EntityManager $em, Slugger $slugger, $projectClass) {
27 27
         $this->em = $em;
Please login to merge, or discard this patch.
Manager/FeatureManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Manager/FeedbackManager.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,13 +41,13 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.