Completed
Push — 6.13 ( c22b67...9be916 )
by Łukasz
22:21
created
Core/Persistence/Legacy/Tests/Content/Language/MaskGeneratorTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     }
163 163
 
164 164
     /**
165
-     * @param int $languageMask
165
+     * @param int $langMask
166 166
      * @param bool $expectedResult
167 167
      *
168 168
      * @covers       \eZ\Publish\Core\Persistence\Legacy\Content\Language\MaskGenerator::isAlwaysAvailable
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
     /**
265 265
      * Returns a language handler mock.
266 266
      *
267
-     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Language\Handler
267
+     * @return LanguageHandler
268 268
      */
269 269
     protected function getLanguageHandler()
270 270
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/Content/MapperTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -602,7 +602,7 @@
 block discarded – undo
602 602
     /**
603 603
      * Returns a language handler mock.
604 604
      *
605
-     * @return \eZ\Publish\Core\Persistence\Legacy\Content\Language\Handler
605
+     * @return Language\Handler
606 606
      */
607 607
     protected function getLanguageHandler()
608 608
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/Content/StorageHandlerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@
 block discarded – undo
182 182
     /**
183 183
      * Returns a context mock.
184 184
      *
185
-     * @return array
185
+     * @return integer[]
186 186
      */
187 187
     protected function getContextMock()
188 188
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/Content/TreeHandlerTest.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
     /**
369 369
      * Returns Location Gateway mock.
370 370
      *
371
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Location\Gateway
371
+     * @return LocationGateway
372 372
      */
373 373
     protected function getLocationGatewayMock()
374 374
     {
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
     /**
388 388
      * Returns a Location Mapper mock.
389 389
      *
390
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Location\Mapper
390
+     * @return LocationMapper
391 391
      */
392 392
     protected function getLocationMapperMock()
393 393
     {
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
     /**
407 407
      * Returns Content Gateway mock.
408 408
      *
409
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Gateway
409
+     * @return Gateway
410 410
      */
411 411
     protected function getContentGatewayMock()
412 412
     {
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
     /**
426 426
      * Returns a Content Mapper mock.
427 427
      *
428
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
428
+     * @return Mapper
429 429
      */
430 430
     protected function getContentMapperMock()
431 431
     {
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
     /**
445 445
      * Returns a FieldHandler mock.
446 446
      *
447
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\FieldHandler
447
+     * @return FieldHandler
448 448
      */
449 449
     protected function getFieldHandlerMock()
450 450
     {
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
     }
457 457
 
458 458
     /**
459
-     * @param array $methods
459
+     * @param string[] $methods
460 460
      *
461 461
      * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\TreeHandler
462 462
      */
Please login to merge, or discard this patch.
Legacy/Tests/Content/Type/ContentUpdater/Action/AddFieldTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
      * Returns a Content fixture.
514 514
      *
515 515
      * @param int $versionNo
516
-     * @param array $languageCodes
516
+     * @param string[] $languageCodes
517 517
      *
518 518
      * @return \eZ\Publish\SPI\Persistence\Content
519 519
      */
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
     /**
570 570
      * Returns a Content StorageHandler mock.
571 571
      *
572
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
572
+     * @return StorageHandler
573 573
      */
574 574
     protected function getContentStorageHandlerMock()
575 575
     {
@@ -583,7 +583,7 @@  discard block
 block discarded – undo
583 583
     /**
584 584
      * Returns a Content mapper mock.
585 585
      *
586
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
586
+     * @return ContentMapper
587 587
      */
588 588
     protected function getContentMapperMock()
589 589
     {
Please login to merge, or discard this patch.
Legacy/Tests/Content/Type/ContentUpdater/Action/RemoveFieldTest.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -269,6 +269,8 @@  discard block
 block discarded – undo
269 269
     /**
270 270
      * Returns a Content fixture.
271 271
      *
272
+     * @param integer $versionNo
273
+     * @param string[] $languageCodes
272 274
      * @return \eZ\Publish\SPI\Persistence\Content
273 275
      */
274 276
     protected function getContentFixture($versionNo, $languageCodes)
@@ -320,7 +322,7 @@  discard block
 block discarded – undo
320 322
     /**
321 323
      * Returns a Content StorageHandler mock.
322 324
      *
323
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
325
+     * @return StorageHandler
324 326
      */
325 327
     protected function getContentStorageHandlerMock()
326 328
     {
@@ -334,7 +336,7 @@  discard block
 block discarded – undo
334 336
     /**
335 337
      * Returns a Content mapper mock.
336 338
      *
337
-     * @return \PHPUnit_Framework_MockObject_MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
339
+     * @return ContentMapper
338 340
      */
339 341
     protected function getContentMapperMock()
340 342
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Tests/Content/Type/MapperTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -413,7 +413,7 @@
 block discarded – undo
413 413
     /**
414 414
      * Returns a converter registry mock.
415 415
      *
416
-     * @return \eZ\Publish\Core\Persistence\Legacy\Content\FieldValue\ConverterRegistry
416
+     * @return \PHPUnit_Framework_MockObject_MockObject
417 417
      */
418 418
     protected function getConverterRegistryMock()
419 419
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Command/ReindexCommand.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,6 +161,9 @@  discard block
 block discarded – undo
161 161
         }
162 162
     }
163 163
 
164
+    /**
165
+     * @param boolean $commit
166
+     */
164 167
     protected function indexIncrementally(InputInterface $input, OutputInterface $output, $iterationCount, $commit)
165 168
     {
166 169
         if ($contentIds = $input->getOption('content-ids')) {
@@ -223,6 +226,10 @@  discard block
 block discarded – undo
223 226
         $progress->finish();
224 227
     }
225 228
 
229
+    /**
230
+     * @param integer $processCount
231
+     * @param integer $iterationCount
232
+     */
226 233
     private function runParallelProcess(ProgressBar $progress, Statement $stmt, $processCount, $iterationCount, $commit)
227 234
     {
228 235
         /**
@@ -277,7 +284,7 @@  discard block
 block discarded – undo
277 284
     }
278 285
 
279 286
     /**
280
-     * @param mixed $locationId
287
+     * @param integer $locationId
281 288
      * @param bool $count
282 289
      *
283 290
      * @return \Doctrine\DBAL\Driver\Statement
Please login to merge, or discard this patch.
eZ/Publish/Core/MVC/Symfony/FieldType/Tests/RichText/RendererTest.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1397,7 +1397,7 @@  discard block
 block discarded – undo
1397 1397
     }
1398 1398
 
1399 1399
     /**
1400
-     * @param array $methods
1400
+     * @param string[] $methods
1401 1401
      *
1402 1402
      * @return \eZ\Publish\Core\MVC\Symfony\FieldType\RichText\Renderer|\PHPUnit_Framework_MockObject_MockObject
1403 1403
      */
@@ -1484,6 +1484,9 @@  discard block
 block discarded – undo
1484 1484
         return $this->createMock(LoggerInterface::class);
1485 1485
     }
1486 1486
 
1487
+    /**
1488
+     * @param integer $mainLocationId
1489
+     */
1487 1490
     protected function getContentMock($mainLocationId)
1488 1491
     {
1489 1492
         $contentInfoMock = $this->createMock(ContentInfo::class);
Please login to merge, or discard this patch.