Completed
Push — master ( 3bc011...0fdb9c )
by Ryota
02:07
created
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/Message/MessageTest.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.
Storage/StorageInterface.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@  discard block
 block discarded – undo
26 26
      * @param JobName $jobName
27 27
      * @param string $server
28 28
      * @param int $procId
29
-     * @param string $prefix
30 29
      * @return void
31 30
      */
32 31
     public function set(JobName $jobName, $server, $procId);
@@ -35,7 +34,6 @@  discard block
 block discarded – undo
35 34
      * @param JobName $jobName
36 35
      * @param string $server
37 36
      * @param int $procId
38
-     * @param string $prefix
39 37
      * @return array
40 38
      */
41 39
     public function get(JobName $jobName, $server, $procId);
@@ -44,7 +42,6 @@  discard block
 block discarded – undo
44 42
      * @param JobName $jobName
45 43
      * @param string $server
46 44
      * @param string $procId
47
-     * @param string $prefix
48 45
      * @return mixed
49 46
      */
50 47
     public function remove(JobName $jobName, $server, $procId);
@@ -52,7 +49,7 @@  discard block
 block discarded – undo
52 49
 
53 50
     /**
54 51
      * @param JobName $jobName
55
-     * @param $server
52
+     * @param string $server
56 53
      * @return void
57 54
      */
58 55
     public function removeForce(JobName $jobName, $server);
Please login to merge, or discard this patch.
Tests/Worker/WorkerTest.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -182,6 +182,8 @@
 block discarded – undo
182 182
 
183 183
     /**
184 184
      * {@inheritdoc}
185
+     * @param string $server
186
+     * @param integer $procId
185 187
      */
186 188
     public function __construct($queue, $server, $procId)
187 189
     {
Please login to merge, or discard this patch.
Job/Job.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     abstract protected function run();
36 36
 
37 37
     /**
38
-     * @return string
38
+     * @return QueueName
39 39
      */
40 40
     public function getJobName()
41 41
     {
Please login to merge, or discard this patch.
Queue/QueueName.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
      * JobName constructor.
25 25
      * @param string $name
26 26
      * @param string $prefix
27
-     * @param string $separator
28 27
      */
29 28
     public function __construct($name, $prefix)
30 29
     {
Please login to merge, or discard this patch.