Completed
Pull Request — master (#226)
by Beñat
03:39
created
src/Kreta/TaskManager/Application/Query/Project/Task/CountTasksHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@
 block discarded – undo
83 83
         );
84 84
     }
85 85
 
86
+    /**
87
+     * @param null|string $parentId
88
+     */
86 89
     private function parentTask(? string $parentId, UserId $userId) : ? TaskId
87 90
     {
88 91
         if (null === $parentId) {
Please login to merge, or discard this patch.
src/Kreta/TaskManager/Application/Query/Project/Task/FilterTasksHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@
 block discarded – undo
112 112
         }, $tasks);
113 113
     }
114 114
 
115
+    /**
116
+     * @param null|string $parentId
117
+     */
115 118
     private function parentTask(? string $parentId, UserId $userId) : ? TaskId
116 119
     {
117 120
         if (null === $parentId) {
Please login to merge, or discard this patch.
Kreta/TaskManager/Domain/Model/Project/Task/TaskSpecificationFactory.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -16,6 +16,13 @@
 block discarded – undo
16 16
 
17 17
 interface TaskSpecificationFactory
18 18
 {
19
+    /**
20
+     * @param null|string $title
21
+     * @param TaskPriority $priority
22
+     * @param TaskProgress $progress
23
+     *
24
+     * @return \Kreta\TaskManager\Infrastructure\Persistence\Doctrine\ORM\Project\Task\DoctrineORMFilterableSpecification
25
+     */
19 26
     public function buildFilterableSpecification(
20 27
         array $projectIds,
21 28
         $title,
Please login to merge, or discard this patch.