Completed
Push — master ( f76bc5...21840a )
by Nate
07:57
created
src/queues/MultipleQueueInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 interface MultipleQueueInterface extends QueueInterface
19 19
 {
20 20
     /**
21
-     * @return QueueInterface[];
21
+     * @return QueueInterface[]
22 22
      */
23 23
     public function getQueues();
24 24
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param JobInterface $job
33
-     * @param $index
33
+     * @param integer $index
34 34
      * @return bool
35 35
      */
36 36
     public function postToQueue(JobInterface $job, $index): bool;
Please login to merge, or discard this patch.
src/jobs/traits/CollectionTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     }
57 57
 
58 58
     /**
59
-     * @param $key
59
+     * @param null|string $key
60 60
      * @param $job
61 61
      * @return static
62 62
      */
Please login to merge, or discard this patch.
src/jobs/traits/EventCollectionTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @inheritdoc
35
+     * @param null|string $key
35 36
      */
36 37
     public function addJob($key, $job)
37 38
     {
Please login to merge, or discard this patch.