Completed
Push — master ( 0fd676...83be6d )
by Alexey
37:37
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.
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.
JobQueue.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,6 @@  discard block
 block discarded – undo
80 80
      * Add connector
81 81
      *
82 82
      * @param string $name
83
-     * @param Closure $resolver
84 83
      */
85 84
     public function addConnector(string $name, ConnectorInterface $connector)
86 85
     {
@@ -92,7 +91,7 @@  discard block
 block discarded – undo
92 91
     /**
93 92
      * Get queue manager instance
94 93
      *
95
-     * @return mixed
94
+     * @return \Illuminate\Queue\QueueManager
96 95
      */
97 96
     public function getQueueManager()
98 97
     {
Please login to merge, or discard this patch.