Completed
Push — master ( ff3370...c7a062 )
by Beñat
38s queued 33s
created
Infrastructure/Persistence/Doctrine/DataFixtures/AbstractFixture.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -66,6 +66,9 @@
 block discarded – undo
66 66
         return $list[$j];
67 67
     }
68 68
 
69
+    /**
70
+     * @param integer $index
71
+     */
69 72
     protected function getRandomUserByIndex($index) : string
70 73
     {
71 74
         $userIds = Yaml::parse(
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.