Completed
Push — master ( 105f11...ea7cfc )
by
unknown
13:00 queued 11s
created
Configuration/ConfigResolver/SiteAccessConfigResolver.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -100,6 +100,10 @@
 block discarded – undo
100 100
         return true;
101 101
     }
102 102
 
103
+    /**
104
+     * @param string $namespace
105
+     * @param string $scope
106
+     */
103 107
     protected function resolveScopeRelativeParamName(string $paramName, ?string $namespace = null, ?string $scope = null): string
104 108
     {
105 109
         return $this->getScopeRelativeParamName($paramName, ...$this->resolveNamespaceAndScope($namespace, $scope));
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/EventListener/ConfigScopeListener.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
     /** @var \eZ\Publish\Core\MVC\Symfony\View\ViewProvider|\eZ\Publish\Core\MVC\Symfony\SiteAccess\SiteAccessAware */
25 25
     private $viewProviders;
26 26
 
27
+    /**
28
+     * @param \PHPUnit\Framework\MockObject\MockObject[] $configResolvers
29
+     */
27 30
     public function __construct(
28 31
         iterable $configResolvers,
29 32
         ViewManagerInterface $viewManager
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Exceptions/InvalidVariationException.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -12,6 +12,10 @@
 block discarded – undo
12 12
 
13 13
 class InvalidVariationException extends InvalidArgumentException
14 14
 {
15
+    /**
16
+     * @param string $variationName
17
+     * @param string $variationType
18
+     */
15 19
     public function __construct($variationName, $variationType, $code = 0, Exception $previous = null)
16 20
     {
17 21
         parent::__construct("Invalid variation '$variationName' for $variationType", $code, $previous);
Please login to merge, or discard this patch.
Bundle/EzPublishCoreBundle/DependencyInjection/Configuration/Parser/IO.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -100,6 +100,7 @@
 block discarded – undo
100 100
 
101 101
     /**
102 102
      * Applies dependencies of complex $parameter in $scope.
103
+     * @param string $parameter
103 104
      */
104 105
     private function addComplexParametersDependencies($parameter, $scope, ContainerBuilder $container)
105 106
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/RoleService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1052,7 +1052,7 @@
 block discarded – undo
1052 1052
      *
1053 1053
      * @param \eZ\Publish\API\Repository\Values\User\RoleCreateStruct $roleCreateStruct
1054 1054
      *
1055
-     * @return \eZ\Publish\Core\FieldType\ValidationError[][][]
1055
+     * @return \eZ\Publish\Core\FieldType\ValidationError[]
1056 1056
      *
1057 1057
      * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException
1058 1058
      */
Please login to merge, or discard this patch.
Publish/Core/Search/Legacy/Content/WordIndexer/Repository/SearchIndex.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -127,18 +127,18 @@
 block discarded – undo
127 127
      * Link word with specific content object (legacy db table: ezsearch_object_word_link).
128 128
      *
129 129
      * @param $wordId
130
-     * @param $contentId
131
-     * @param $frequency
132
-     * @param $placement
130
+     * @param integer $contentId
131
+     * @param integer $frequency
132
+     * @param integer $placement
133 133
      * @param $nextWordId
134 134
      * @param $prevWordId
135
-     * @param $contentTypeId
135
+     * @param integer $contentTypeId
136 136
      * @param $fieldTypeId
137
-     * @param $published
138
-     * @param $sectionId
137
+     * @param integer $published
138
+     * @param integer $sectionId
139 139
      * @param $identifier
140 140
      * @param $integerValue
141
-     * @param $languageMask
141
+     * @param integer $languageMask
142 142
      */
143 143
     public function addObjectWordLink($wordId,
144 144
                                       $contentId,
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Command/ReindexCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
     }
333 333
 
334 334
     /**
335
-     * @param mixed $locationId
335
+     * @param integer $locationId
336 336
      * @param bool $count
337 337
      *
338 338
      * @return \Doctrine\DBAL\Driver\Statement
Please login to merge, or discard this patch.
MVC/Symfony/EventListener/Tests/ContentViewTwigVariablesSubscriberTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 final class ContentViewTwigVariablesSubscriberTest extends TestCase
24 24
 {
25 25
     /**
26
-     * @return \eZ\Publish\Core\MVC\Symfony\View\ContentView|\PHPUnit\Framework\MockObject\MockObject
26
+     * @return View
27 27
      */
28 28
     private function getContentViewMock(): ContentView
29 29
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Tests/Service/Mock/DomainMapperTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 use eZ\Publish\Core\Repository\Mapper\ContentDomainMapper;
19 19
 use eZ\Publish\Core\Repository\Values\Content\Content;
20 20
 use eZ\Publish\Core\Repository\Values\Content\VersionInfo;
21
-use eZ\Publish\SPI\Persistence\Content\ContentInfo;
22 21
 use eZ\Publish\SPI\Persistence\Content\ContentInfo as SPIContentInfo;
23 22
 use eZ\Publish\SPI\Persistence\Content\Location;
24 23
 use eZ\Publish\API\Repository\Values\Content\Location as APILocation;
Please login to merge, or discard this patch.