@@ -283,6 +283,7 @@ |
||
283 | 283 | /** |
284 | 284 | * If in run-time debug mode, before SiteAccess is initialized, log getParameter() usages when considered "unsafe". |
285 | 285 | * |
286 | + * @param string $paramName |
|
286 | 287 | * @return string |
287 | 288 | */ |
288 | 289 | private function logTooEarlyLoadedListIfNeeded($paramName) |
@@ -13,6 +13,9 @@ |
||
13 | 13 | |
14 | 14 | abstract class AbstractParamConverterTest extends TestCase |
15 | 15 | { |
16 | + /** |
|
17 | + * @param string $name |
|
18 | + */ |
|
16 | 19 | public function createConfiguration($class = null, $name = null) |
17 | 20 | { |
18 | 21 | $config = $this |
@@ -236,7 +236,6 @@ discard block |
||
236 | 236 | * |
237 | 237 | * @param \eZ\Publish\API\Repository\Values\ValueObject $expectedValues |
238 | 238 | * @param \eZ\Publish\API\Repository\Values\ValueObject $actualObject |
239 | - * @param array $propertyNames |
|
240 | 239 | */ |
241 | 240 | protected function assertStructPropertiesCorrect(ValueObject $expectedValues, ValueObject $actualObject, array $additionalProperties = []) |
242 | 241 | { |
@@ -297,6 +296,7 @@ discard block |
||
297 | 296 | |
298 | 297 | /** |
299 | 298 | * Create a user in editor user group. |
299 | + * @param string $email |
|
300 | 300 | */ |
301 | 301 | protected function createUserVersion1(string $login = 'user', ?string $email = null): User |
302 | 302 | { |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | /** |
526 | 526 | * Create role of a given name with the given policies described by an array. |
527 | 527 | * |
528 | - * @param $roleName |
|
528 | + * @param string $roleName |
|
529 | 529 | * @param array $policiesData [['module' => 'content', 'function' => 'read', 'limitations' => []] |
530 | 530 | * |
531 | 531 | * @return \eZ\Publish\API\Repository\Values\User\Role |