Completed
Push — master ( bde134...8948a0 )
by Alexey
36:43
created
commands/CommandTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      *
71 71
      * @param string $actionId
72 72
      *
73
-     * @return array
73
+     * @return string[]
74 74
      */
75 75
     public function options($actionId)
76 76
     {
Please login to merge, or discard this patch.
JobProcess.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     /**
52 52
      * Get the Artisan process for the job id.
53 53
      *
54
-     * @param Job|MongoJob $job
54
+     * @param Job $job
55 55
      * @param string $connectionName
56 56
      *
57 57
      * @return Process
Please login to merge, or discard this patch.
JobQueue.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     /**
83 83
      * Get queue manager instance
84 84
      *
85
-     * @return mixed
85
+     * @return \Illuminate\Queue\QueueManager
86 86
      */
87 87
     public function getQueueManager()
88 88
     {
Please login to merge, or discard this patch.
jobs/MongoJob.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * Create a new job instance.
35 35
      *
36 36
      * @param  Container $container
37
-     * @param  MongoQueue $database
37
+     * @param  MongoThreadQueue $database
38 38
      * @param  StdClass $job
39 39
      * @param  string $queue
40 40
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Container\Container;
6 6
 use Illuminate\Contracts\Queue\Job as JobContract;
7 7
 use Illuminate\Queue\Jobs\Job;
8
-use stdClass;
9 8
 use yiicod\jobqueue\queues\MongoQueue;
10 9
 use yiicod\jobqueue\queues\MongoThreadQueue;
11 10
 
Please login to merge, or discard this patch.
queues/MongoThreadQueue.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      * @param  mixed $data
93 93
      * @param  string $queue
94 94
      *
95
-     * @return mixed
95
+     * @return boolean
96 96
      */
97 97
     public function exists($job, $data = '', $queue = null)
98 98
     {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      *
190 190
      * @param  string $queue
191 191
      *
192
-     * @return Job|null
192
+     * @return MongoJob|null
193 193
      */
194 194
     public function pop($queue = null)
195 195
     {
Please login to merge, or discard this patch.
Worker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
      *
182 182
      * @param string $connectionName
183 183
      * @param \Illuminate\Contracts\Queue\Job $job
184
-     * @param Options $options
184
+     * @param WorkerOptions $options
185 185
      * @param \Exception $e
186 186
      *
187 187
      * @throws \Exception
Please login to merge, or discard this patch.