Completed
Push — ezp-30646 ( bfb229...83f3c2 )
by
unknown
17:05
created
eZ/Bundle/EzPublishCoreBundle/Command/ReindexCommand.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,6 +218,9 @@  discard block
 block discarded – undo
218 218
         }
219 219
     }
220 220
 
221
+    /**
222
+     * @param boolean $commit
223
+     */
221 224
     protected function indexIncrementally(InputInterface $input, OutputInterface $output, $iterationCount, $commit)
222 225
     {
223 226
         if ($contentIds = $input->getOption('content-ids')) {
@@ -285,6 +288,10 @@  discard block
 block discarded – undo
285 288
         $progress->finish();
286 289
     }
287 290
 
291
+    /**
292
+     * @param integer $processCount
293
+     * @param integer $iterationCount
294
+     */
288 295
     private function runParallelProcess(ProgressBar $progress, Statement $stmt, $processCount, $iterationCount, $commit)
289 296
     {
290 297
         /** @var \Symfony\Component\Process\Process[]|null[] */
@@ -341,7 +348,7 @@  discard block
 block discarded – undo
341 348
     }
342 349
 
343 350
     /**
344
-     * @param mixed $locationId
351
+     * @param integer $locationId
345 352
      * @param bool $count
346 353
      *
347 354
      * @return \Doctrine\DBAL\Driver\Statement
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/EventListener/RequestEventListener.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@
 block discarded – undo
34 34
     /** @var \Symfony\Component\Routing\RouterInterface */
35 35
     private $router;
36 36
 
37
+    /**
38
+     * @param string $defaultSiteAccess
39
+     */
37 40
     public function __construct(ConfigResolverInterface $configResolver, RouterInterface $router, $defaultSiteAccess, LoggerInterface $logger = null)
38 41
     {
39 42
         $this->configResolver = $configResolver;
Please login to merge, or discard this patch.
EzPublishCoreBundle/DependencyInjection/Configuration/ConfigResolver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -283,6 +283,7 @@
 block discarded – undo
283 283
     /**
284 284
      * If in run-time debug mode, before SiteAccess is initialized, log getParameter() usages when considered "unsafe".
285 285
      *
286
+     * @param string $paramName
286 287
      * @return string
287 288
      */
288 289
     private function logTooEarlyLoadedListIfNeeded($paramName)
Please login to merge, or discard this patch.
Search/Legacy/Content/Common/Gateway/SortClauseHandler/AbstractRandom.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@
 block discarded – undo
48 48
         return $column;
49 49
     }
50 50
 
51
+    /**
52
+     * @param integer|null $seed
53
+     */
51 54
     abstract public function getRandomFunctionName(?int $seed): string;
52 55
 
53 56
     abstract public function getDriverName(): string;
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Content/Type/Handler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -336,7 +336,6 @@
 block discarded – undo
336 336
     /**
337 337
      * @param mixed $typeId
338 338
      * @param int $status
339
-     * @param \eZ\Publish\SPI\Persistence\Content\Type\UpdateStruct $contentType
340 339
      *
341 340
      * @return Type
342 341
      */
Please login to merge, or discard this patch.
eZ/Publish/SPI/FieldType/Tests/FieldTypeTest.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -663,7 +663,6 @@  discard block
 block discarded – undo
663 663
     }
664 664
 
665 665
     /**
666
-     * @param mixed $inputValue
667 666
      * @param array $expectedResult
668 667
      *
669 668
      * @dataProvider provideInputForFromHash
@@ -803,7 +802,6 @@  discard block
 block discarded – undo
803 802
     }
804 803
 
805 804
     /**
806
-     * @param mixed $inputConfiguration
807 805
      *
808 806
      * @dataProvider provideValidFieldSettings
809 807
      */
@@ -831,7 +829,6 @@  discard block
 block discarded – undo
831 829
     }
832 830
 
833 831
     /**
834
-     * @param mixed $inputConfiguration
835 832
      *
836 833
      * @dataProvider provideValidFieldSettings
837 834
      */
Please login to merge, or discard this patch.