Completed
Push — master ( 239355...d39289 )
by Matthew
05:26
created
Model/RetryableJob.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @param int $erroredCount
89
+     * @param integer $errorCount
90 90
      *
91 91
      * @return RetryableJob
92 92
      */
Please login to merge, or discard this patch.
ORM/JobManager.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -117,6 +117,10 @@
 block discarded – undo
117 117
         }
118 118
     }
119 119
 
120
+    /**
121
+     * @param string $workerName
122
+     * @param string $method
123
+     */
120 124
     protected function addWorkerNameCriterion(QueryBuilder $queryBuilder, $workerName = null, $method = null)
121 125
     {
122 126
         if (null !== $workerName) {
Please login to merge, or discard this patch.
DependencyInjection/Compiler/WorkerCompilerPass.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -235,6 +235,10 @@  discard block
 block discarded – undo
235 235
         return $jobClass;
236 236
     }
237 237
 
238
+    /**
239
+     * @param string $type
240
+     * @param string $className
241
+     */
238 242
     public function getRunArchiveClass(ContainerBuilder $container, $type, $className)
239 243
     {
240 244
         $runArchiveClass = $container->hasParameter('dtc_queue.class_'.$type) ? $container->getParameter('dtc_queue.class_'.$type) : null;
@@ -274,7 +278,6 @@  discard block
 block discarded – undo
274 278
     }
275 279
 
276 280
     /**
277
-     * @param string|null $jobArchiveClass
278 281
      *
279 282
      * @throws \Exception
280 283
      */
Please login to merge, or discard this patch.