Completed
Push — ezp_31469 ( b7caf7...818c79 )
by
unknown
279:28 queued 267:46
created
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 2 patches
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.
Unused Use Statements   +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.