Completed
Push — master ( 3caa30...d0a32e )
by Ryota
05:10
created
Tests/Message/MessageTest.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@
 block discarded – undo
29 29
 class DummyJob extends Job
30 30
 {
31 31
     /**
32
-     * @param array $args
33
-     * @return booelan
32
+     * @return boolean
34 33
      */
35 34
     public function run()
36 35
     {
Please login to merge, or discard this patch.
Tests/Queue/QueueTest.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,8 +103,7 @@
 block discarded – undo
103 103
 class DummyJob extends Job
104 104
 {
105 105
     /**
106
-     * @param array $args
107
-     * @return booelan
106
+     * @return boolean
108 107
      */
109 108
     public function run()
110 109
     {
Please login to merge, or discard this patch.
Tests/Worker/WorkerTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -189,9 +189,9 @@
 block discarded – undo
189 189
     private $procId;
190 190
 
191 191
     /**
192
-     * @param $queue
193
-     * @param $server
194
-     * @param $procId
192
+     * @param string $queue
193
+     * @param string $server
194
+     * @param integer $procId
195 195
      */
196 196
     public function __construct($queue, $server, $procId)
197 197
     {
Please login to merge, or discard this patch.