Completed
Pull Request — master (#392)
by Beñat
04:38
created
SharedKernel/src/Kreta/SharedKernel/Application/CommandBus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,5 +16,8 @@
 block discarded – undo
16 16
 
17 17
 interface CommandBus
18 18
 {
19
+    /**
20
+     * @return void
21
+     */
19 22
     public function handle($command) : void;
20 23
 }
Please login to merge, or discard this patch.
SharedKernel/src/Kreta/SharedKernel/Application/QueryBus.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,5 +16,8 @@
 block discarded – undo
16 16
 
17 17
 interface QueryBus
18 18
 {
19
+    /**
20
+     * @return void
21
+     */
19 22
     public function handle($query, &$result) : void;
20 23
 }
Please login to merge, or discard this patch.
SharedKernel/src/Kreta/SharedKernel/Domain/Event/AsyncEventSubscriber.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
 
19 19
 interface AsyncEventSubscriber
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function handle(AsyncDomainEvent $event) : void;
22 25
 }
Please login to merge, or discard this patch.
src/Kreta/TaskManager/Domain/Model/Project/ProjectSpecificationFactory.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -18,7 +18,15 @@
 block discarded – undo
18 18
 
19 19
 interface ProjectSpecificationFactory
20 20
 {
21
+    /**
22
+     * @param null|string $name
23
+     *
24
+     * @return \Kreta\TaskManager\Infrastructure\Persistence\Doctrine\ORM\Project\DoctrineORMFilterableSpecification
25
+     */
21 26
     public function buildFilterableSpecification(array $organizationIds, $name, int $offset = 0, int $limit = -1);
22 27
 
28
+    /**
29
+     * @return \Kreta\TaskManager\Infrastructure\Persistence\Doctrine\ORM\Project\DoctrineORMBySlugSpecification
30
+     */
23 31
     public function buildBySlugSpecification(Slug $slug, Slug $organizationSlug);
24 32
 }
Please login to merge, or discard this patch.
src/Kreta/TaskManager/Domain/Model/Project/Task/TaskParentChanged.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
     private $parentId;
23 23
     private $occurredOn;
24 24
 
25
+    /**
26
+     * @param null|TaskId $parentId
27
+     */
25 28
     public function __construct(TaskId $id, ?TaskId $parentId)
26 29
     {
27 30
         $this->id = $id;
Please login to merge, or discard this patch.
src/Kreta/TaskManager/Domain/Model/Project/Task/TaskRepository.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -20,8 +20,14 @@
 block discarded – undo
20 20
 
21 21
     public function query($specification) : array;
22 22
 
23
+    /**
24
+     * @return void
25
+     */
23 26
     public function persist(Task $task) : void;
24 27
 
28
+    /**
29
+     * @return void
30
+     */
25 31
     public function remove(Task $task) : void;
26 32
 
27 33
     public function count($specification) : int;
Please login to merge, or discard this patch.
Infrastructure/Persistence/Doctrine/DataFixtures/LoadTaskData.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -75,6 +75,11 @@
 block discarded – undo
75 75
         }
76 76
     }
77 77
 
78
+    /**
79
+     * @param integer $index
80
+     *
81
+     * @return string
82
+     */
78 83
     private function taskPriority($index)
79 84
     {
80 85
         $priorityIndex = $index % 2 > 3 ? 0 : 2 - $index % 3;
Please login to merge, or discard this patch.
src/Kreta/TaskManager/Domain/Model/Organization/Organization.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -150,6 +150,9 @@
 block discarded – undo
150 150
         return $this->owners;
151 151
     }
152 152
 
153
+    /**
154
+     * @return Member
155
+     */
153 156
     public function owner(UserId $userId) : ?Owner
154 157
     {
155 158
         foreach ($this->owners() as $owner) {
Please login to merge, or discard this patch.
Notifier/src/Kreta/Notifier/Domain/Model/Inbox/UserRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
 {
19 19
     public function get(UserId $id) : User;
20 20
 
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function save(User $user) : void;
22 25
 }
Please login to merge, or discard this patch.