Completed
Push — master ( 13db45...8df8d1 )
by Matthew
06:01
created
ODM/JobManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -241,8 +241,8 @@
 block discarded – undo
241 241
     }
242 242
 
243 243
     /**
244
-     * @param null $workerName
245
-     * @param null $methodName
244
+     * @param string|null $workerName
245
+     * @param string|null $methodName
246 246
      * @param bool $prioritize
247 247
      *
248 248
      * @return Builder
Please login to merge, or discard this patch.
ORM/JobManager.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -475,8 +475,9 @@
 block discarded – undo
475 475
      *  This is a bit of a hack to run a lower level query so as to process the INSERT INTO SELECT
476 476
      *   All on the server as "INSERT INTO SELECT" is not supported natively in Doctrine.
477 477
      *
478
-     * @param null $workerName
479
-     * @param null $methodName
478
+     * @param string|null $workerName
479
+     * @param string|null $methodName
480
+     * @param \Closure $progressCallback
480 481
      */
481 482
     protected function runArchive($workerName = null, $methodName = null, $progressCallback)
482 483
     {
Please login to merge, or discard this patch.
Tests/Controller/TrendsControllerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
         $this->runJsCssTest($response);
30 30
     }
31 31
 
32
+    /**
33
+     * @param \Symfony\Component\DependencyInjection\Container $container
34
+     */
32 35
     public function runTimingsActionTests($container)
33 36
     {
34 37
         $trendsController = new TrendsController();
Please login to merge, or discard this patch.