Completed
Push — cs-fix-header-comment ( 27e626 )
by
unknown
27:18
created
eZ/Publish/API/Repository/Tests/SearchServiceTest.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3710,6 +3710,7 @@  discard block
 block discarded – undo
3710 3710
      * Test for the findContent() method.
3711 3711
      *
3712 3712
      * @see \eZ\Publish\API\Repository\SearchService::findContent()
3713
+     * @param string $queryType
3713 3714
      */
3714 3715
     public function testUserMetadataGroupHorizontalFilterContent($queryType = null)
3715 3716
     {
@@ -3799,6 +3800,7 @@  discard block
 block discarded – undo
3799 3800
      * Test for the findLocations() method.
3800 3801
      *
3801 3802
      * @see \eZ\Publish\API\Repository\SearchService::findLocations()
3803
+     * @param string $queryType
3802 3804
      */
3803 3805
     public function testUserMetadataGroupHorizontalFilterLocation($queryType = null)
3804 3806
     {
@@ -4485,7 +4487,7 @@  discard block
 block discarded – undo
4485 4487
      *
4486 4488
      * @param callable|null $closure
4487 4489
      *
4488
-     * @return callable
4490
+     * @return \Closure
4489 4491
      */
4490 4492
     private function getContentInfoFixtureClosure($closure = null)
4491 4493
     {
Please login to merge, or discard this patch.
API/Repository/Tests/Values/User/Limitation/RolePolicyLimitationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
     /**
100 100
      * Perform search by the Subtree Criterion for the given subtree path and return results count.
101 101
      *
102
-     * @param $subtreePathString
102
+     * @param string $subtreePathString
103 103
      *
104 104
      * @return int|null
105 105
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Base/ServiceContainer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     protected $bypassCache;
65 65
 
66 66
     /**
67
-     * @param ContainerInterface|string $container Path to the container file or container instance
67
+     * @param ContainerBuilder $container Path to the container file or container instance
68 68
      * @param string $installDir Installation directory, required by default 'containerBuilder.php' file
69 69
      * @param string $cacheDir Directory where PHP container cache will be stored
70 70
      * @param bool $debug Default false should be used for production, if true resources will be checked
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Tests/RichText/RichTextStorageTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
     }
356 356
 
357 357
     /**
358
-     * @return array
358
+     * @return string[]
359 359
      */
360 360
     protected function getContext()
361 361
     {
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
     protected $loggerMock;
367 367
 
368 368
     /**
369
-     * @return \PHPUnit\Framework\MockObject\MockObject|\Psr\Log\LoggerInterface
369
+     * @return integer
370 370
      */
371 371
     protected function getLoggerMock()
372 372
     {
Please login to merge, or discard this patch.
Core/Helper/Tests/FieldsGroups/ArrayTranslatorFieldsGroupsListTest.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,6 +68,9 @@  discard block
 block discarded – undo
68 68
         );
69 69
     }
70 70
 
71
+    /**
72
+     * @param string $default
73
+     */
71 74
     private function buildList($groups, $default)
72 75
     {
73 76
         return new ArrayTranslatorFieldsGroupsList(
@@ -78,7 +81,7 @@  discard block
 block discarded – undo
78 81
     }
79 82
 
80 83
     /**
81
-     * @return \PHPUnit\Framework\MockObject\MockObject|\Symfony\Component\Translation\TranslatorInterface
84
+     * @return TranslatorInterface
82 85
      */
83 86
     private function getTranslatorMock()
84 87
     {
Please login to merge, or discard this patch.
Helper/Tests/FieldsGroups/RepositoryConfigFieldsGroupsListFactoryTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @return \eZ\Bundle\EzPublishCoreBundle\ApiLoader\RepositoryConfigurationProvider|\PHPUnit\Framework\MockObject\MockObject
40
+     * @return RepositoryConfigurationProvider
41 41
      */
42 42
     protected function getRepositoryConfigMock()
43 43
     {
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @return \PHPUnit\Framework\MockObject\MockObject|\Symfony\Component\Translation\TranslatorInterface
52
+     * @return TranslatorInterface
53 53
      */
54 54
     protected function getTranslatorMock()
55 55
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/MVC/Symfony/FieldType/RichText/Renderer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -381,9 +381,9 @@
 block discarded – undo
381 381
     /**
382 382
      * Returns configured template reference for the given embed parameters.
383 383
      *
384
-     * @param $resourceType
385
-     * @param $isInline
386
-     * @param $isDenied
384
+     * @param integer $resourceType
385
+     * @param boolean $isInline
386
+     * @param boolean $isDenied
387 387
      *
388 388
      * @return string|null
389 389
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/MVC/Symfony/Matcher/Tests/AbstractMatcherFactoryTest.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,6 @@
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @param array $properties
172 171
      *
173 172
      * @return \eZ\Publish\Core\MVC\Symfony\View\ContentView|\PHPUnit\Framework\MockObject\MockObject
174 173
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/MVC/Symfony/SiteAccess/Matcher/Regex.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     /**
65 65
      * Returns matched SiteAccess.
66 66
      *
67
-     * @return bool|string
67
+     * @return string|false
68 68
      */
69 69
     protected function getMatchedSiteAccess()
70 70
     {
Please login to merge, or discard this patch.