@@ -125,6 +125,9 @@ |
||
| 125 | 125 | $this->assertNull($this->provider->loadMainLocation($contentId)); |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | + /** |
|
| 129 | + * @param integer $mainLocationId |
|
| 130 | + */ |
|
| 128 | 131 | private function getContentMock(int $contentId, ?int $mainLocationId = null, bool $published = false): Content |
| 129 | 132 | { |
| 130 | 133 | $contentInfo = new APIContentInfo([ |
@@ -15,6 +15,9 @@ |
||
| 15 | 15 | |
| 16 | 16 | abstract class AbstractViewTest extends TestCase |
| 17 | 17 | { |
| 18 | + /** |
|
| 19 | + * @param string $template |
|
| 20 | + */ |
|
| 18 | 21 | abstract protected function createViewUnderTest($template = null, array $parameters = [], $viewType = 'full'): View; |
| 19 | 22 | |
| 20 | 23 | /** |
@@ -50,6 +50,9 @@ |
||
| 50 | 50 | return null; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | + /** |
|
| 54 | + * @return Field |
|
| 55 | + */ |
|
| 53 | 56 | private function getFieldByIdentifier(string $identifier, array $fields): ?Field |
| 54 | 57 | { |
| 55 | 58 | /** @var \eZ\Publish\API\Repository\Values\Content\Field $field */ |
@@ -68,6 +68,7 @@ |
||
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * {@inheritdoc} |
| 71 | + * @param string $key |
|
| 71 | 72 | */ |
| 72 | 73 | public function getItem($key) |
| 73 | 74 | { |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @see \eZ\Publish\API\Repository\PermissionResolver::canUser() |
| 51 | 51 | * |
| 52 | 52 | * @param TokenInterface $token A TokenInterface instance |
| 53 | - * @param object $object The object to secure |
|
| 53 | + * @param \stdClass $object The object to secure |
|
| 54 | 54 | * @param array $attributes An array of attributes associated with the method being invoked |
| 55 | 55 | * |
| 56 | 56 | * @return int either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED |
@@ -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 |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | /** |
| 70 | 70 | * Create a Connection Handler with corresponding Doctrine connection from DSN. |
| 71 | 71 | * |
| 72 | - * @param string|array $dsn |
|
| 72 | + * @param string $dsn |
|
| 73 | 73 | * |
| 74 | 74 | * @return ConnectionHandler |
| 75 | 75 | */ |
@@ -460,8 +460,9 @@ discard block |
||
| 460 | 460 | * |
| 461 | 461 | * This is an optimization and works around the ezcDB implementation. |
| 462 | 462 | * |
| 463 | - * @param string $identifier |
|
| 464 | 463 | * |
| 464 | + * @param string $name |
|
| 465 | + * @param string $alias |
|
| 465 | 466 | * @return string |
| 466 | 467 | */ |
| 467 | 468 | public function alias($name, $alias) |
@@ -496,7 +497,7 @@ discard block |
||
| 496 | 497 | * @param string $table |
| 497 | 498 | * @param string $column |
| 498 | 499 | * |
| 499 | - * @return mixed |
|
| 500 | + * @return string |
|
| 500 | 501 | */ |
| 501 | 502 | public function getAutoIncrementValue($table, $column) |
| 502 | 503 | { |
@@ -6,9 +6,8 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | namespace eZ\Publish\Core\MVC\Symfony\SiteAccess\Tests; |
| 8 | 8 | |
| 9 | -use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIText; |
|
| 10 | -use eZ\Publish\Core\MVC\Symfony\SiteAccess\Router; |
|
| 11 | 9 | use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIText as URITextMatcher; |
| 10 | +use eZ\Publish\Core\MVC\Symfony\SiteAccess\Router; |
|
| 12 | 11 | use eZ\Publish\Core\MVC\Symfony\Routing\SimplifiedRequest; |
| 13 | 12 | use Psr\Log\LoggerInterface; |
| 14 | 13 | |
@@ -7,9 +7,8 @@ |
||
| 7 | 7 | namespace eZ\Publish\Core\MVC\Symfony\SiteAccess\Tests; |
| 8 | 8 | |
| 9 | 9 | use eZ\Publish\Core\MVC\Symfony\SiteAccess; |
| 10 | -use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIElement; |
|
| 11 | -use eZ\Publish\Core\MVC\Symfony\SiteAccess\Router; |
|
| 12 | 10 | use eZ\Publish\Core\MVC\Symfony\SiteAccess\Matcher\URIElement as URIElementMatcher; |
| 11 | +use eZ\Publish\Core\MVC\Symfony\SiteAccess\Router; |
|
| 13 | 12 | use eZ\Publish\Core\MVC\Symfony\Routing\SimplifiedRequest; |
| 14 | 13 | use Psr\Log\LoggerInterface; |
| 15 | 14 | |