Completed
Push — ezp-31079-follow-up ( 93ebb2...04d61c )
by
unknown
46:44 queued 24:02
created
Legacy/Tests/Content/Type/ContentUpdater/Action/RemoveFieldTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     /**
285 285
      * Returns a Content Gateway mock.
286 286
      *
287
-     * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Gateway
287
+     * @return Gateway
288 288
      */
289 289
     protected function getContentGatewayMock()
290 290
     {
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
     /**
299 299
      * Returns a Content StorageHandler mock.
300 300
      *
301
-     * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
301
+     * @return StorageHandler
302 302
      */
303 303
     protected function getContentStorageHandlerMock()
304 304
     {
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
     /**
313 313
      * Returns a Content mapper mock.
314 314
      *
315
-     * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper
315
+     * @return ContentMapper
316 316
      */
317 317
     protected function getContentMapperMock()
318 318
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/User/Handler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -538,7 +538,7 @@
 block discarded – undo
538 538
      * are an array of limitation values. The limitation parameter is optional.
539 539
      *
540 540
      * @param mixed $contentId The groupId or userId to assign the role to.
541
-     * @param mixed $roleId
541
+     * @param integer|null $roleId
542 542
      * @param array $limitation
543 543
      */
544 544
     public function assignRole($contentId, $roleId, array $limitation = null)
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Database/DatabaseHandler.php 1 patch
Doc Comments   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,16 +27,19 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * Begin a transaction.
30
+     * @return void
30 31
      */
31 32
     public function beginTransaction();
32 33
 
33 34
     /**
34 35
      * Commit a transaction.
36
+     * @return void
35 37
      */
36 38
     public function commit();
37 39
 
38 40
     /**
39 41
      * Rollback a transaction.
42
+     * @return void
40 43
      */
41 44
     public function rollBack();
42 45
 
@@ -60,6 +63,7 @@  discard block
 block discarded – undo
60 63
      * Execute a query against the database.
61 64
      *
62 65
      * @param string $query
66
+     * @return void
63 67
      */
64 68
     public function exec($query);
65 69
 
@@ -68,7 +72,8 @@  discard block
 block discarded – undo
68 72
      *
69 73
      * Statements are ducktyped, but need to work like PDOStatement.
70 74
      *
71
-     * @return object
75
+     * @param string $query
76
+     * @return \Doctrine\DBAL\Driver\Statement
72 77
      */
73 78
     public function prepare($query);
74 79
 
@@ -138,8 +143,9 @@  discard block
 block discarded – undo
138 143
      *
139 144
      * This is an optimization and works around the ezcDB implementation.
140 145
      *
141
-     * @param string $identifier
142 146
      *
147
+     * @param string $name
148
+     * @param string $alias
143 149
      * @return string
144 150
      */
145 151
     public function alias($name, $alias);
@@ -185,7 +191,7 @@  discard block
 block discarded – undo
185 191
     /**
186 192
      * Returns underlying connection (e.g. Doctrine connection object).
187 193
      *
188
-     * @return mixed
194
+     * @return \Doctrine\DBAL\Connection
189 195
      */
190 196
     public function getConnection();
191 197
 }
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Content/UrlAlias/Handler.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
      * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
310 310
      * @throws \eZ\Publish\API\Repository\Exceptions\ForbiddenException
311 311
      *
312
-     * @param mixed $locationId
312
+     * @param integer $locationId
313 313
      * @param string $path
314 314
      * @param bool $forwarding
315 315
      * @param string $languageCode
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
      * @param string $text
467 467
      * @param string $textMD5
468 468
      *
469
-     * @return mixed
469
+     * @return integer
470 470
      */
471 471
     protected function insertNopEntry($parentId, $text, $textMD5)
472 472
     {
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
      *
487 487
      * @throws \eZ\Publish\API\Repository\Exceptions\BadStateException
488 488
      *
489
-     * @param mixed $locationId
489
+     * @param integer $locationId
490 490
      * @param bool $custom if true the user generated aliases are listed otherwise the autogenerated
491 491
      *
492 492
      * @return \eZ\Publish\SPI\Persistence\Content\UrlAlias[]
@@ -622,9 +622,9 @@  discard block
 block discarded – undo
622 622
      *
623 623
      * This method triggers the change of the autogenerated aliases.
624 624
      *
625
-     * @param mixed $locationId
626
-     * @param mixed $oldParentId
627
-     * @param mixed $newParentId
625
+     * @param integer $locationId
626
+     * @param integer $oldParentId
627
+     * @param integer $newParentId
628 628
      */
629 629
     public function locationMoved($locationId, $oldParentId, $newParentId)
630 630
     {
@@ -652,9 +652,9 @@  discard block
 block discarded – undo
652 652
      *
653 653
      * This method triggers the creation of the autogenerated aliases for the copied locations
654 654
      *
655
-     * @param mixed $locationId
656
-     * @param mixed $newLocationId
657
-     * @param mixed $newParentId
655
+     * @param integer $locationId
656
+     * @param integer $newLocationId
657
+     * @param integer $newParentId
658 658
      */
659 659
     public function locationCopied($locationId, $newLocationId, $newParentId)
660 660
     {
@@ -983,7 +983,7 @@  discard block
 block discarded – undo
983 983
     /**
984 984
      * Notifies the underlying engine that a location was deleted or moved to trash.
985 985
      *
986
-     * @param mixed $locationId
986
+     * @param integer $locationId
987 987
      */
988 988
     public function locationDeleted($locationId)
989 989
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/UserService.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Loads a user group for the given id.
175 175
      *
176
-     * @param mixed $id
176
+     * @param integer $id
177 177
      * @param string[] $prioritizedLanguages Used as prioritized language code on translated properties of returned object.
178 178
      *
179 179
      * @return \eZ\Publish\API\Repository\Values\User\UserGroup
@@ -1371,6 +1371,9 @@  discard block
 block discarded – undo
1371 1371
             !empty($userUpdateStruct->maxLogin);
1372 1372
     }
1373 1373
 
1374
+    /**
1375
+     * @param integer|null $timestamp
1376
+     */
1374 1377
     private function getDateTime(?int $timestamp): ?DateTimeInterface
1375 1378
     {
1376 1379
         if ($timestamp !== null) {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Content/Gateway/DoctrineDatabase.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1966,6 +1966,4 @@
 block discarded – undo
1966 1966
                 $alwaysAvailable ? 1 : self::REMOVE_ALWAYS_AVAILABLE_LANG_MASK_OPERAND
1967 1967
             );
1968 1968
 
1969
-        return $query;
1970
-    }
1971
-}
1969
+        return $query
1972 1970
\ No newline at end of file
Please login to merge, or discard this patch.
Core/Repository/Strategy/ContentThumbnail/Field/ContentFieldStrategy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     private $strategies = [];
22 22
 
23 23
     /**
24
-     * @param \eZ\Publish\SPI\Repository\Strategy\ContentThumbnail\Field\FieldTypeBasedThumbnailStrategy[]|Traversable $strategies
24
+     * @param Traversable $strategies
25 25
      */
26 26
     public function __construct(Traversable $strategies)
27 27
     {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     }
67 67
 
68 68
     /**
69
-     * @param \eZ\Publish\SPI\Repository\Strategy\ContentThumbnail\Field\FieldTypeBasedThumbnailStrategy[]|Traversable $thumbnailStrategies
69
+     * @param FieldTypeBasedThumbnailStrategy[] $thumbnailStrategies
70 70
      */
71 71
     public function setStrategies(array $thumbnailStrategies): void
72 72
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Helper/PreviewLocationProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * @see loadMainLocationByContent
57 57
      * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
58 58
      * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
59
-     * @param mixed $contentId
59
+     * @param integer $contentId
60 60
      *
61 61
      * @return \eZ\Publish\API\Repository\Values\Content\Location|null
62 62
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Values/User/User.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      * @param string $fieldDefIdentifier
55 55
      * @param string $languageCode
56 56
      *
57
-     * @return mixed a primitive type or a field type Value object depending on the field type.
57
+     * @return Value|null a primitive type or a field type Value object depending on the field type.
58 58
      */
59 59
     public function getFieldValue(string $fieldDefIdentifier, ?string $languageCode = null): ?Value
60 60
     {
Please login to merge, or discard this patch.