diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b601db7..45ae9fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,32 +10,28 @@ on: jobs: cs-fix: name: Run code style check - runs-on: "ubuntu-20.04" - strategy: - matrix: - php: - - '8.0' + runs-on: "ubuntu-22.04" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup PHP Action uses: shivammathur/setup-php@v2 with: - php-version: ${{ matrix.php }} + php-version: '8.0' coverage: none extensions: 'pdo_sqlite, gd' tools: cs2pr - - uses: "ramsey/composer-install@v1" + - uses: ramsey/composer-install@v2 with: - dependency-versions: "highest" + dependency-versions: highest - name: Run code style check run: composer run-script check-cs -- --format=checkstyle | cs2pr tests: name: Unit tests - runs-on: "ubuntu-20.04" + runs-on: "ubuntu-22.04" timeout-minutes: 15 strategy: @@ -48,7 +44,7 @@ jobs: - '8.1' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup PHP Action uses: shivammathur/setup-php@v2 @@ -58,15 +54,19 @@ jobs: extensions: pdo_sqlite, gd tools: cs2pr - - uses: "ramsey/composer-install@v1" + - uses: ramsey/composer-install@v2 with: - dependency-versions: "highest" + dependency-versions: highest + + - name: Run PHPStan analysis + run: composer run-script phpstan - name: Setup problem matchers for PHPUnit run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Run unit test suite run: composer test + integration-tests: name: "REST integration tests" uses: ./.github/workflows/integration-tests-callable.yaml diff --git a/composer.json b/composer.json index 2da508a..2160b8b 100644 --- a/composer.json +++ b/composer.json @@ -50,7 +50,11 @@ "matthiasnoback/symfony-dependency-injection-test": "^4.1", "nyholm/psr7": "^1.1", "symfony/http-client": "^5.3", - "symfony/browser-kit": "^5.3" + "symfony/browser-kit": "^5.3", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-symfony": "^1.3", + "phpstan/phpstan-phpunit": "^1.3", + "phpstan/phpstan-webmozart-assert": "^1.2" }, "config": { "allow-plugins": { @@ -62,6 +66,7 @@ "scripts": { "fix-cs": "php-cs-fixer fix -v --show-progress=estimating", "check-cs": "@fix-cs --dry-run", + "phpstan": "phpstan analyse -c phpstan.neon", "test": "phpunit -c phpunit.xml", "integration": "phpunit -c phpunit-integration-rest.xml" }, diff --git a/phpstan-baseline-7.4.neon b/phpstan-baseline-7.4.neon new file mode 100644 index 0000000..676d3a2 --- /dev/null +++ b/phpstan-baseline-7.4.neon @@ -0,0 +1,56 @@ +parameters: + ignoreErrors: + - + message: "#^Parameter \\#1 \\$file of function file_put_contents expects string, string\\|false given\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/BinaryInputProcessor.php + + - + message: "#^Parameter \\#1 \\$input of function array_slice expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#2 \\$str of function explode expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#2 \\.\\.\\.\\$args of function array_merge expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$arr1 of function array_merge expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\$input of function array_slice expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#2 \\$error_type of function trigger_error expects int, string given\\.$#" + count: 4 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$message of method Psr\\\\Log\\\\LoggerInterface\\:\\:error\\(\\) expects string, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Parameter \\#1 \\$str of function base64_encode expects string, string\\|false given\\.$#" + count: 1 + path: tests/bundle/Functional/BinaryContentTest.php + + - + message: "#^Parameter \\#1 \\$pathname of function mkdir expects string, string\\|false given\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryInputProcessorTest.php + + - + message: "#^Parameter \\#2 \\$newvalue of function ini_set expects string, int given\\.$#" + count: 2 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php diff --git a/phpstan-baseline-8.0.neon b/phpstan-baseline-8.0.neon new file mode 100644 index 0000000..2c5af27 --- /dev/null +++ b/phpstan-baseline-8.0.neon @@ -0,0 +1,81 @@ +parameters: + ignoreErrors: + - + message: "#^Parameter \\#1 \\$filename of function file_put_contents expects string, string\\|false given\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/BinaryInputProcessor.php + + - + message: "#^Access to an undefined property DOMNode\\:\\:\\$data\\.$#" + count: 2 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Access to an undefined property DOMNode\\:\\:\\$tagName\\.$#" + count: 2 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Access to an undefined property DOMNode\\:\\:\\$wholeText\\.$#" + count: 2 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Call to an undefined method DOMNode\\:\\:getAttribute\\(\\)\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Call to an undefined method DOMNode\\:\\:hasAttribute\\(\\)\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Parameter \\#1 \\$domElement of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:parseFieldTypeHash\\(\\) expects DOMElement, DOMNode given\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Parameter \\#1 \\$array of function array_slice expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#2 \\$string of function explode expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#2 \\.\\.\\.\\$arrays of function array_merge expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$array of function array_slice expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\.\\.\\.\\$arrays of function array_merge expects array, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#2 \\$error_level of function trigger_error expects int, string given\\.$#" + count: 4 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$message of method Psr\\\\Log\\\\LoggerInterface\\:\\:error\\(\\) expects string\\|Stringable, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Parameter \\#1 \\$string of function base64_encode expects string, string\\|false given\\.$#" + count: 1 + path: tests/bundle/Functional/BinaryContentTest.php + + - + message: "#^Parameter \\#1 \\$directory of function mkdir expects string, string\\|false given\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryInputProcessorTest.php diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 0000000..28558b2 --- /dev/null +++ b/phpstan-baseline.neon @@ -0,0 +1,11976 @@ +parameters: + ignoreErrors: + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\ApiLoader\\\\Factory\\:\\:getBinaryFileFieldTypeProcessor\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/ApiLoader/Factory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\ApiLoader\\\\Factory\\:\\:getMediaFieldTypeProcessor\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/ApiLoader/Factory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\CorsOptions\\\\RestProvider\\:\\:getAllowedMethods\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/CorsOptions/RestProvider.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\CorsOptions\\\\RestProvider\\:\\:getAllowedMethods\\(\\) has parameter \\$uri with no type specified\\.$#" + count: 1 + path: src/bundle/CorsOptions/RestProvider.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\CorsOptions\\\\RestProvider\\:\\:getOptions\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/CorsOptions/RestProvider.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Compiler\\\\FieldTypeProcessorPass\\:\\:process\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Compiler/FieldTypeProcessorPass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Compiler\\\\InputHandlerPass\\:\\:process\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Compiler/InputHandlerPass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Compiler\\\\InputParserPass\\:\\:process\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Compiler/InputParserPass.php + + - + message: "#^Argument of an invalid type array\\|bool\\|float\\|int\\|string\\|null supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Compiler/OutputVisitorPass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Compiler\\\\OutputVisitorPass\\:\\:process\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Compiler/OutputVisitorPass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Compiler\\\\ValueObjectVisitorPass\\:\\:process\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Compiler/ValueObjectVisitorPass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Configuration\\:\\:addRestRootResourcesSection\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Configuration.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Configuration\\:\\:addRestRootResourcesSection\\(\\) has parameter \\$rootNode with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Configuration.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\EzPlatformRestExtension\\:\\:load\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/EzPlatformRestExtension.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\EzPlatformRestExtension\\:\\:prepend\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/EzPlatformRestExtension.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\EzPlatformRestExtension\\:\\:prependRouterConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/EzPlatformRestExtension.php + + - + message: "#^Parameter \\#1 \\$configuration of method Symfony\\\\Component\\\\DependencyInjection\\\\Extension\\\\Extension\\:\\:processConfiguration\\(\\) expects Symfony\\\\Component\\\\Config\\\\Definition\\\\ConfigurationInterface, Symfony\\\\Component\\\\Config\\\\Definition\\\\ConfigurationInterface\\|null given\\.$#" + count: 1 + path: src/bundle/DependencyInjection/EzPlatformRestExtension.php + + - + message: "#^Parameter \\#1 \\$input of static method Symfony\\\\Component\\\\Yaml\\\\Yaml\\:\\:parse\\(\\) expects string, string\\|false given\\.$#" + count: 1 + path: src/bundle/DependencyInjection/EzPlatformRestExtension.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createEntryPoint\\(\\) has parameter \\$config with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createEntryPoint\\(\\) has parameter \\$container with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createEntryPoint\\(\\) has parameter \\$defaultEntryPoint with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createEntryPoint\\(\\) has parameter \\$id with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createListener\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createListener\\(\\) has parameter \\$config with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createListener\\(\\) has parameter \\$container with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createListener\\(\\) has parameter \\$id with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:createListener\\(\\) has parameter \\$userProvider with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\DependencyInjection\\\\Security\\\\RestSessionBasedFactory\\:\\:isRememberMeAware\\(\\) has parameter \\$config with no type specified\\.$#" + count: 1 + path: src/bundle/DependencyInjection/Security/RestSessionBasedFactory.php + + - + message: "#^Cannot call method isTokenValid\\(\\) on Symfony\\\\Component\\\\Security\\\\Csrf\\\\CsrfTokenManagerInterface\\|null\\.$#" + count: 1 + path: src/bundle/EventListener/CsrfListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\CsrfListener\\:\\:getSubscribedEvents\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/EventListener/CsrfListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\CsrfListener\\:\\:onKernelRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/EventListener/CsrfListener.php + + - + message: "#^Parameter \\#1 \\$id of class Symfony\\\\Component\\\\Security\\\\Csrf\\\\CsrfToken constructor expects string, bool given\\.$#" + count: 1 + path: src/bundle/EventListener/CsrfListener.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\CsrfListener\\:\\:\\$csrfTokenIntention \\(bool\\) does not accept string\\.$#" + count: 1 + path: src/bundle/EventListener/CsrfListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\RequestListener\\:\\:getSubscribedEvents\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/EventListener/RequestListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\RequestListener\\:\\:hasRestPrefix\\(\\) should return bool but returns int\\|false\\.$#" + count: 1 + path: src/bundle/EventListener/RequestListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\RequestListener\\:\\:onKernelRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/EventListener/RequestListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\ResponseListener\\:\\:getSubscribedEvents\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/EventListener/ResponseListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\ResponseListener\\:\\:onKernelExceptionView\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/EventListener/ResponseListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\ResponseListener\\:\\:onKernelResultView\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/EventListener/ResponseListener.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\EzPlatformRestBundle\\:\\:build\\(\\) has no return type specified\\.$#" + count: 1 + path: src/bundle/EzPlatformRestBundle.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\RequestParser\\\\Router\\:\\:generate\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/RequestParser/Router.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\RequestParser\\\\Router\\:\\:matchesRestRequest\\(\\) has parameter \\$match with no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/RequestParser/Router.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\RequestParser\\\\Router\\:\\:parse\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/bundle/RequestParser/Router.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\RequestParser\\\\Router\\:\\:\\$router \\(Symfony\\\\Cmf\\\\Component\\\\Routing\\\\ChainRouter\\) does not accept Symfony\\\\Component\\\\Routing\\\\RouterInterface\\.$#" + count: 1 + path: src/bundle/RequestParser/Router.php + + - + message: "#^Call to method mapCollection\\(\\) on an unknown class EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\RouteCollectionMapperMapper\\.$#" + count: 1 + path: src/bundle/Routing/OptionsLoader.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\OptionsLoader\\:\\:supports\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: src/bundle/Routing/OptionsLoader.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\OptionsLoader\\:\\:\\$routeCollectionMapper \\(EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\RouteCollectionMapperMapper\\) does not accept EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\OptionsLoader\\\\RouteCollectionMapper\\.$#" + count: 1 + path: src/bundle/Routing/OptionsLoader.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\OptionsLoader\\:\\:\\$routeCollectionMapper has unknown class EzSystems\\\\EzPlatformRestBundle\\\\Routing\\\\RouteCollectionMapperMapper as its type\\.$#" + count: 1 + path: src/bundle/Routing/OptionsLoader.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\BaseRelationProcessor\\:\\:setLocationService\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/BaseRelationProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\BaseRelationProcessor\\:\\:setRouter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/BaseRelationProcessor.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\BaseRelationProcessor\\:\\:\\$router \\(Symfony\\\\Component\\\\Routing\\\\RouterInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/BaseRelationProcessor.php + + - + message: "#^Cannot access property \\$id on eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Field\\|null\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/ImageAssetFieldTypeProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\ImageAssetFieldTypeProcessor\\:\\:__construct\\(\\) has parameter \\$configMappings with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/ImageAssetFieldTypeProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\ImageAssetFieldTypeProcessor\\:\\:__construct\\(\\) has parameter \\$variations with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/ImageAssetFieldTypeProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\ImageProcessor\\:\\:__construct\\(\\) has parameter \\$variations with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/ImageProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\RelationListProcessor\\:\\:postProcessValueHash\\(\\) has parameter \\$outgoingValueHash with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/RelationListProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\RelationListProcessor\\:\\:postProcessValueHash\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/RelationListProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\RelationProcessor\\:\\:postProcessValueHash\\(\\) has parameter \\$outgoingValueHash with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/RelationProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessor\\\\RelationProcessor\\:\\:postProcessValueHash\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/FieldTypeProcessor/RelationProcessor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\FieldTypeProcessorRegistry\\:\\:registerProcessor\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/FieldTypeProcessorRegistry.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\BaseParser\\:\\:setRequestParser\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Input/BaseParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Dispatcher\\:\\:addHandler\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Input/Dispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Dispatcher\\:\\:parseParameters\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Input/Dispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Dispatcher\\:\\:parseParameters\\(\\) has parameter \\$mediaTypePart with no type specified\\.$#" + count: 1 + path: src/lib/Input/Dispatcher.php + + - + message: "#^Cannot access property \\$fieldTypeIdentifier on eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\FieldDefinition\\|null\\.$#" + count: 1 + path: src/lib/Input/FieldTypeParser.php + + - + message: "#^Parameter \\#1 \\$contentId of method eZ\\\\Publish\\\\API\\\\Repository\\\\ContentService\\:\\:loadContentInfo\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Input/FieldTypeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\:\\:convert\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Json\\:\\:convert\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Json\\:\\:jsonDecodeErrorMessage\\(\\) has parameter \\$jsonErrorCode with no type specified\\.$#" + count: 1 + path: src/lib/Input/Handler/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:convert\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:convertDom\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:convertDom\\(\\) should return array but returns array\\\\|string\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:convertDom\\(\\) should return array but returns null\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:parseFieldTypeHash\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:parseFieldTypeValues\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:\\$fieldTypeHashElements has no type specified\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Input\\\\Handler\\\\Xml\\:\\:\\$forceList type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Handler/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Parser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\\\ContentObjectStates\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/Parser/ContentObjectStates.php + + - + message: "#^Return type \\(array\\\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\\\ContentObjectStates\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Input/Parser/ContentObjectStates.php + + - + message: "#^Instantiated class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation\\\\SiteaccessLimitation not found\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\:\\:getLimitationByIdentifier\\(\\) should return eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation but returns eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation\\\\SiteaccessLimitation\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\:\\:isEmbeddedObject\\(\\) has parameter \\$objectElement with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\:\\:parseLimitation\\(\\) has parameter \\$limitation with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\:\\:parseObjectElement\\(\\) has parameter \\$objectElement with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\:\\:parseTranslatableList\\(\\) has parameter \\$listElement with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\:\\:parseTranslatableList\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParserTools.php + + - + message: "#^Cannot access offset mixed on EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\.$#" + count: 2 + path: src/lib/Input/ParsingDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:__construct\\(\\) has parameter \\$parsers with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParsingDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:addParser\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Input/ParsingDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParsingDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:parseMediaTypeVersion\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Input/ParsingDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Message\\:\\:__construct\\(\\) has parameter \\$headers with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Message.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Message\\:\\:\\$headers type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Message.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Exceptions\\\\NoVisitorFoundException\\:\\:__construct\\(\\) has parameter \\$classes with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Exceptions/NoVisitorFoundException.php + + - + message: "#^Cannot access property \\$fieldTypeIdentifier on eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\FieldDefinition\\|null\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\FieldTypeSerializer\\:\\:serializeFieldDefaultValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\FieldTypeSerializer\\:\\:serializeFieldSettings\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\FieldTypeSerializer\\:\\:serializeFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\FieldTypeSerializer\\:\\:serializeHash\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\FieldTypeSerializer\\:\\:serializeValidatorConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\FieldTypeSerializer\\:\\:serializeValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/FieldTypeSerializer.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:\\$isEmpty\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEnd\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEndAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEndDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEndHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEndList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEndObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkEndValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStart\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStart\\(\\) has parameter \\$validParents with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStartAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStartDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStartHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStartList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStartObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:checkStartValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:endAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:endHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:endList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:endObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:endValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:generateFieldTypeHash\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:reset\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:setFormatOutput\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:setFormatOutput\\(\\) has parameter \\$formatOutput with no type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:\\$stack type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\JsonObject\\:\\:\\$\\#text\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Argument of an invalid type EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\JsonObject supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Cannot call method getParent\\(\\) on array\\.$#" + count: 3 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:endAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:endDocument\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:endHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:endList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:endObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:endValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:generateFieldTypeHash\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:startValueElement\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Parameter \\#1 \\$parent of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\FieldTypeHashGenerator\\:\\:generateHashValue\\(\\) expects EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\ArrayObject\\|EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\JsonObject, array given\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:\\$json \\(array\\) does not accept EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\ArrayObject\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:\\$json \\(array\\) does not accept EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\JsonObject\\.$#" + count: 5 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\:\\:\\$json type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Json.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\FieldTypeHashGenerator\\:\\:generateArrayValue\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Json/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\FieldTypeHashGenerator\\:\\:generateHashArray\\(\\) has parameter \\$hashArray with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Json/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\FieldTypeHashGenerator\\:\\:generateHashValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Json/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\FieldTypeHashGenerator\\:\\:generateListArray\\(\\) has parameter \\$listArray with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Json/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Json\\\\FieldTypeHashGenerator\\:\\:isNumericArray\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Json/FieldTypeHashGenerator.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 2 + path: src/lib/Output/Generator/Json/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:endAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:endHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:endList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:endObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:endValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:generateFieldTypeHash\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startObjectElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\:\\:startValueElement\\(\\) has parameter \\$attributes with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateArrayValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateArrayValue\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateBooleanValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateFloatValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateHashArray\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateHashArray\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateHashValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateIntegerValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateKeyAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateListArray\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateListArray\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateNullValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateStringValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:generateValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\\\FieldTypeHashGenerator\\:\\:isNumericArray\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Parameter \\#1 \\$content of method XMLWriter\\:\\:text\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Output/Generator/Xml/FieldTypeHashGenerator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) invoked with 3 parameters, 2 required\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:setRequestParser\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:setRouter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:setTemplateRouter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitDescriptionsList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitDescriptionsList\\(\\) has parameter \\$descriptions with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitLimitation\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitNamesList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitNamesList\\(\\) has parameter \\$names with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitTranslatedList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\:\\:visitTranslatedList\\(\\) has parameter \\$translatedElements with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStates\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitor/ContentObjectStates.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\:\\:addVisitor\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitorDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\:\\:setOutputGenerator\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitorDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\:\\:setOutputVisitor\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/ValueObjectVisitorDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Visitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setStatus\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Output/Visitor.php + + - + message: "#^Offset 0 does not exist on array\\\\|string\\|null\\.$#" + count: 1 + path: src/lib/Output/Visitor.php + + - + message: "#^Parameter \\#1 \\$key of method Symfony\\\\Component\\\\HttpFoundation\\\\ResponseHeaderBag\\:\\:remove\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: src/lib/Output/Visitor.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:\\$statusCode \\(int\\) does not accept null\\.$#" + count: 1 + path: src/lib/Output/Visitor.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:\\$valueObjectVisitorDispatcher \\(EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\) does not accept default value of type array\\.$#" + count: 1 + path: src/lib/Output/Visitor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:generate\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:parse\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\EzPublish\\:\\:\\$map type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser/EzPublish.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\Pattern\\:\\:__construct\\(\\) has parameter \\$map with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\Pattern\\:\\:addPattern\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\Pattern\\:\\:generate\\(\\) has parameter \\$values with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\Pattern\\:\\:parse\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^PHPDoc tag @param references unknown parameter\\: \\$type$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\Pattern\\:\\:\\$compileCache type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\RequestParser\\\\Pattern\\:\\:\\$map type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/RequestParser/Pattern.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\:\\:setInputDispatcher\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\:\\:setRepository\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\:\\:setRequestParser\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\:\\:setRouter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\BinaryContent\\:\\:getImageVariation\\(\\) should return eZ\\\\Publish\\\\SPI\\\\Variation\\\\Values\\\\Variation but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/BinaryContent.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\BinaryContent\\:\\:parseImageId\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Controller/BinaryContent.php + + - + message: "#^PHPDoc tag @var has invalid value \\(\\$field \\\\eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Field\\)\\: Unexpected token \"\\$field\", expected type at offset 9$#" + count: 1 + path: src/lib/Server/Controller/BinaryContent.php + + - + message: "#^Parameter \\#1 \\$field of method eZ\\\\Publish\\\\SPI\\\\Variation\\\\VariationHandler\\:\\:getVariation\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Field, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Field\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/BinaryContent.php + + - + message: "#^Variable \\$field might not be defined\\.$#" + count: 2 + path: src/lib/Server/Controller/BinaryContent.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Bookmark\\:\\:extractLocationIdFromPath\\(\\) is unused\\.$#" + count: 1 + path: src/lib/Server/Controller/Bookmark.php + + - + message: "#^Cannot call method get\\(\\) on Symfony\\\\Component\\\\DependencyInjection\\\\ContainerInterface\\|null\\.$#" + count: 2 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Cannot call method getCurrentRequest\\(\\) on object\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Cannot call method handle\\(\\) on object\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Content\\:\\:createView\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestExecutedView but returns Symfony\\\\Component\\\\HttpFoundation\\\\Response\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Content\\:\\:loadContent\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Content\\:\\:loadContentInVersion\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\Version but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Content\\:\\:loadVersionRelation\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestRelation but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Content\\:\\:loadVersionRelations\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RelationList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, int\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#1 \\$parentLocationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:newLocationCreateStruct\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#1 \\$versions of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\VersionList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#3 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\Version constructor expects array\\, iterable\\ given\\.$#" + count: 4 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent constructor expects array\\\\|null, iterable\\\\|null given\\.$#" + count: 2 + path: src/lib/Server/Controller/Content.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:addContentTypeDraftFieldDefinition\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:copyContentType\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:createContentType\\(\\) has parameter \\$contentTypeGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:createContentTypeDraft\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:deleteContentType\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:deleteContentTypeDraft\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:getContentTypeList\\(\\) should return array\\ but returns array\\\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentType\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeDraft\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeDraftFieldDefinition\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeDraftFieldDefinition\\(\\) has parameter \\$fieldDefinitionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeDraftFieldDefinitionList\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeFieldDefinition\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeFieldDefinition\\(\\) has parameter \\$fieldDefinitionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeFieldDefinitionList\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeGroup\\(\\) has parameter \\$contentTypeGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadContentTypeGroupList\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ContentTypeGroupList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\TemporaryRedirect\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:loadGroupsOfContentType\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:publishContentTypeDraft\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:removeContentTypeDraftFieldDefinition\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:removeContentTypeDraftFieldDefinition\\(\\) has parameter \\$fieldDefinitionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:sortContentTypeList\\(\\) has parameter \\$contentTypes with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:sortContentTypeList\\(\\) has parameter \\$sort with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:unlinkContentTypeFromGroup\\(\\) has parameter \\$contentTypeGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:unlinkContentTypeFromGroup\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:updateContentTypeDraft\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:updateContentTypeDraftFieldDefinition\\(\\) has parameter \\$contentTypeId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:updateContentTypeDraftFieldDefinition\\(\\) has parameter \\$fieldDefinitionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:updateContentTypeDraftFieldDefinition\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\FieldDefinitionList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestFieldDefinition\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ContentType\\:\\:updateContentTypeGroup\\(\\) has parameter \\$contentTypeGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$contentTypeGroupId of method eZ\\\\Publish\\\\API\\\\Repository\\\\ContentTypeService\\:\\:loadContentTypeGroup\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$contentTypeGroups of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ContentTypeGroupList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$contentTypes of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ContentTypeInfoList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$contentTypes of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ContentTypeList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$href of method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:parseHref\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$identifier of method eZ\\\\Publish\\\\API\\\\Repository\\\\ContentTypeService\\:\\:loadContentTypeByIdentifier\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$remoteId of method eZ\\\\Publish\\\\API\\\\Repository\\\\ContentTypeService\\:\\:loadContentTypeByRemoteId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#2 \\$callback of function usort expects callable\\(mixed, mixed\\)\\: int, Closure\\(mixed, mixed\\)\\: bool given\\.$#" + count: 2 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#2 \\$default of method Symfony\\\\Component\\\\HttpFoundation\\\\InputBag\\\\:\\:get\\(\\) expects string\\|null, int given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#2 \\$fieldDefinitions of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\FieldDefinitionList constructor expects array\\, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\FieldDefinitionCollection given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#2 \\$offset of function array_slice expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: src/lib/Server/Controller/ContentType.php + + - + message: "#^Parameter \\#1 \\$wrappedUser of class Ibexa\\\\Rest\\\\Server\\\\Security\\\\JWTUser constructor expects Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/JWT.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Location\\:\\:loadLocation\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestLocation but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Location\\:\\:loadLocationChildren\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\LocationList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Location\\:\\:loadLocationsForContent\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\LocationList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Parameter \\#1 \\$href of method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:parseHref\\(\\) expects string, string\\|null given\\.$#" + count: 3 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Parameter \\#1 \\$remoteId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocationByRemoteId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Parameter \\#1 \\$url of method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:parse\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Location.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:createObjectState\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:deleteObjectState\\(\\) has parameter \\$objectStateId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:deleteObjectStateGroup\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:getObjectStatesForContent\\(\\) has parameter \\$contentId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:loadObjectState\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:loadObjectState\\(\\) has parameter \\$objectStateId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:loadObjectStateGroup\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:loadObjectStates\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:setObjectStatesForContent\\(\\) has parameter \\$contentId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:updateObjectState\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:updateObjectState\\(\\) has parameter \\$objectStateId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\ObjectState\\:\\:updateObjectStateGroup\\(\\) has parameter \\$objectStateGroupId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Parameter \\#1 \\$groups of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ObjectStateGroupList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Parameter \\#1 \\$states of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ObjectStateList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/ObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Options\\:\\:getRouteOptions\\(\\) has parameter \\$allowedMethods with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Options.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Policy\\:\\:\\$originalId\\.$#" + count: 2 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Dead catch \\- EzSystems\\\\EzPlatformRest\\\\Exceptions\\\\Parser is never thrown in the try block\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:assignRoleToUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:assignRoleToUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:createRoleDraft\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:deletePolicies\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:deleteRole\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:deleteRoleDraft\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:getLastAddedPolicy\\(\\) has parameter \\$role with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadPolicies\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadPolicy\\(\\) has parameter \\$policyId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadPolicy\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRole\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRoleAssignmentForUser\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRoleAssignmentForUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRoleAssignmentForUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRoleAssignmentForUserGroup\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRoleAssignmentsForUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:loadRoleAssignmentsForUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:unassignRoleFromUser\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:unassignRoleFromUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:unassignRoleFromUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:unassignRoleFromUserGroup\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Role\\:\\:updateRole\\(\\) has parameter \\$roleId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, string given\\.$#" + count: 4 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\$policies of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\PolicyList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\$roleAssignment of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserRoleAssignment constructor expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\UserRoleAssignment, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\UserGroupRoleAssignment\\|eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\UserRoleAssignment given\\.$#" + count: 1 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\$roleAssignments of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RoleAssignmentList constructor expects array\\, iterable\\ given\\.$#" + count: 3 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#1 \\$roleAssignments of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RoleAssignmentList constructor expects array\\, iterable\\ given\\.$#" + count: 3 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#2 \\$policy of method eZ\\\\Publish\\\\API\\\\Repository\\\\RoleService\\:\\:updatePolicyByRoleDraft\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\PolicyDraft, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Policy given\\.$#" + count: 2 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Parameter \\#2 \\$policyDraft of method eZ\\\\Publish\\\\API\\\\Repository\\\\RoleService\\:\\:removePolicyByRoleDraft\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\PolicyDraft, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Policy given\\.$#" + count: 2 + path: src/lib/Server/Controller/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Root\\:\\:__construct\\(\\) has parameter \\$rootResourceBuilder with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Root.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Root\\:\\:catchAll\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Root.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Root\\:\\:loadRootResource\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Values\\\\Root but returns array\\|EzSystems\\\\EzPlatformRest\\\\Values\\\\Root\\.$#" + count: 1 + path: src/lib/Server/Controller/Root.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Section\\:\\:deleteSection\\(\\) has parameter \\$sectionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Section.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Section\\:\\:loadSection\\(\\) has parameter \\$sectionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Section.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Section\\:\\:updateSection\\(\\) has parameter \\$sectionId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Section.php + + - + message: "#^Parameter \\#1 \\$sectionIdentifier of method eZ\\\\Publish\\\\API\\\\Repository\\\\SectionService\\:\\:loadSectionByIdentifier\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Section.php + + - + message: "#^Parameter \\#1 \\$sections of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\SectionList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/Section.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Services\\:\\:__construct\\(\\) has parameter \\$countriesInfo with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Controller/Services.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Services\\:\\:loadCountryList\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Services.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Services\\:\\:\\$countriesInfo type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Controller/Services.php + + - + message: "#^Cannot call method authenticate\\(\\) on eZ\\\\Publish\\\\Core\\\\MVC\\\\Symfony\\\\Security\\\\Authentication\\\\AuthenticatorInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Cannot call method getAPIUser\\(\\) on Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Cannot call method logout\\(\\) on eZ\\\\Publish\\\\Core\\\\MVC\\\\Symfony\\\\Security\\\\Authentication\\\\AuthenticatorInterface\\|null\\.$#" + count: 5 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:__construct\\(\\) has parameter \\$tokenIntention with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:checkCsrfToken\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:deleteSessionAction\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\DeletedUserSession but returns Symfony\\\\Component\\\\HttpFoundation\\\\Response\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:getAuthenticator\\(\\) never returns null so it can be removed from the return type\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:refreshSessionAction\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserSession but returns Symfony\\\\Component\\\\HttpFoundation\\\\Response\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^PHPDoc tag @var has invalid value \\(\\$session \\\\Symfony\\\\Component\\\\HttpFoundation\\\\Session\\\\Session\\)\\: Unexpected token \"\\$session\", expected type at offset 9$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^PHPDoc tag @var has invalid value \\(\\$sessionInput \\\\EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\SessionInput\\)\\: Unexpected token \"\\$sessionInput\", expected type at offset 9$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Parameter \\#4 \\$csrfToken of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserSession constructor expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:\\$csrfTokenManager \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\CsrfTokenManager\\) does not accept EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\CsrfTokenManager\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:\\$csrfTokenStorage \\(Symfony\\\\Component\\\\Security\\\\Csrf\\\\TokenStorage\\\\TokenStorageInterface\\) does not accept Symfony\\\\Component\\\\Security\\\\Csrf\\\\TokenStorage\\\\TokenStorageInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\SessionController\\:\\:\\$csrfTokenStorage is never read, only written\\.$#" + count: 1 + path: src/lib/Server/Controller/SessionController.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Trash\\:\\:deleteTrashItem\\(\\) has parameter \\$trashItemId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Trash\\:\\:loadTrashItem\\(\\) has parameter \\$trashItemId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\Trash\\:\\:restoreTrashItem\\(\\) has parameter \\$trashItemId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Parameter \\#1 \\$href of method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:parseHref\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\:\\:\\$limit \\(int\\) does not accept int\\<0, max\\>\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\:\\:\\$offset \\(int\\) does not accept int\\<0, max\\>\\|null\\.$#" + count: 1 + path: src/lib/Server/Controller/Trash.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\URLAlias\\:\\:deleteURLAlias\\(\\) has parameter \\$urlAliasId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\URLAlias\\:\\:listLocationURLAliases\\(\\) has parameter \\$locationPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\URLAlias\\:\\:listLocationURLAliases\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\URLAliasRefList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\URLAlias\\:\\:loadURLAlias\\(\\) has parameter \\$urlAliasId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/URLAlias.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, string given\\.$#" + count: 2 + path: src/lib/Server/Controller/URLAlias.php + + - + message: "#^Parameter \\#1 \\$urlAliases of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\URLAliasRefList constructor expects array\\, iterable\\ given\\.$#" + count: 2 + path: src/lib/Server/Controller/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\URLWildcard\\:\\:deleteURLWildcard\\(\\) has parameter \\$urlWildcardId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/URLWildcard.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\URLWildcard\\:\\:loadURLWildcard\\(\\) has parameter \\$urlWildcardId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/URLWildcard.php + + - + message: "#^Parameter \\#1 \\$urlWildcards of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\URLWildcardList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/URLWildcard.php + + - + message: "#^Dead catch \\- eZ\\\\Publish\\\\API\\\\Repository\\\\Exceptions\\\\NotFoundException is never thrown in the try block\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Expression \"\\$this\\-\\>loadUsers\\(\\$request\\)\\-\\>users\" on a separate line does not do anything\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:assignUserToUserGroup\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:createUser\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:createUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:deleteUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:deleteUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadSubUserGroups\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadSubUserGroups\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserGroupList\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserGroupRefList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 2 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUser\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUser but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUserDrafts\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUserGroup\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroup but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUserGroupsOfUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUserGroupsOfUser\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserGroupRefList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUsersFromGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:loadUsersFromGroup\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserList\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserRefList but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\.$#" + count: 2 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:moveUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:setSessionController\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:setTokenStorage\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:unassignUserFromUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:unassignUserFromUserGroup\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:updateUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:updateUserGroup\\(\\) has parameter \\$groupPath with no type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:verifyUsers\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^PHPDoc tag @throws with type eZ\\\\Publish\\\\Core\\\\Base\\\\Exceptions\\\\UnauthorizedException\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\RestNotFoundException is not subtype of Throwable$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$href of method EzSystems\\\\EzPlatformRest\\\\RequestParser\\:\\:parseHref\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$id of method eZ\\\\Publish\\\\API\\\\Repository\\\\UserService\\:\\:loadUserGroup\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, int\\|null given\\.$#" + count: 14 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$message of function trigger_error expects string, int given\\.$#" + count: 4 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$path of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:extractLocationIdFromPath\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$remoteId of method eZ\\\\Publish\\\\API\\\\Repository\\\\ContentService\\:\\:loadContentInfoByRemoteId\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#1 \\$versions of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\VersionList constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUser constructor expects array\\, iterable\\ given\\.$#" + count: 5 + path: src/lib/Server/Controller/User.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroup constructor expects array\\, iterable\\ given\\.$#" + count: 10 + path: src/lib/Server/Controller/User.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Controller\\\\User\\:\\:\\$csrfTokenStorage is never read, only written\\.$#" + count: 1 + path: src/lib/Server/Controller/User.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractRangeAggregationParser\\:\\:dispatchRanges\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractRangeAggregationParser\\:\\:dispatchRanges\\(\\) should return array\\ but returns array\\, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\>\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractRangeAggregationParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractRangeAggregationParser.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Aggregation\\\\AbstractRangeAggregation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractRangeAggregationParser\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractStatsAggregationParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractStatsAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractStatsAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractStatsAggregationParser.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Aggregation\\\\AbstractStatsAggregation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractStatsAggregationParser\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractStatsAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractTermAggregationParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractTermAggregationParser.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Aggregation\\\\AbstractTermAggregation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\AbstractTermAggregationParser\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/AbstractTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\ContentTypeGroupTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/ContentTypeGroupTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\ContentTypeTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/ContentTypeTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\DateMetadataRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/DateMetadataRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\AuthorTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/AuthorTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\CheckboxTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/CheckboxTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\CountryTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/CountryTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\DateRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/DateRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\DateTimeRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/DateTimeRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\FloatRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/FloatRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\FloatStatsAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/FloatStatsAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\IntegerRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/IntegerRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\IntegerStatsAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/IntegerStatsAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\KeywordTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/KeywordTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\SelectionTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/SelectionTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Field\\\\TimeRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Field/TimeRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\LanguageTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/LanguageTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Location\\\\LocationChildrenTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Location/LocationChildrenTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Location\\\\SubtreeTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Location/SubtreeTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\ObjectStateTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/ObjectStateTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Range\\\\AbstractRangeParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Range/AbstractRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Range\\\\AbstractRangeParser\\:\\:visitRangeValue\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Range/AbstractRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Range\\\\AbstractRangeParser\\:\\:visitRangeValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Range/AbstractRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Range\\\\DateTimeRangeParser\\:\\:visitRangeValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Range/DateTimeRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Range\\\\FloatRangeParser\\:\\:visitRangeValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Range/FloatRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\Range\\\\IntRangeParser\\:\\:visitRangeValue\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/Range/IntRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\RawRangeAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/RawRangeAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\RawStatsAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/RawStatsAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\RawTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/RawTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\SectionTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/SectionTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\UserMetadataTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/UserMetadataTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Aggregation\\\\VisibilityTermAggregationParser\\:\\:parseAggregation\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Aggregation/VisibilityTermAggregationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ContentCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ContentCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ContentTypeCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ContentTypeGroupInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ContentTypeGroupInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ContentTypeUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ContentUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ContentUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:dispatchAggregation\\(\\) has parameter \\$aggregationData with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:dispatchAggregation\\(\\) should return eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Aggregation but returns eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:dispatchCriterion\\(\\) should return eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion but returns eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:dispatchSortClause\\(\\) should return eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion but returns eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:getCriterionMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:getCriterionMediaType\\(\\) has parameter \\$criterionName with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:getFacetBuilderMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:getFacetBuilderMediaType\\(\\) has parameter \\$facetBuilderName with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:getSortClauseMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:getSortClauseMediaType\\(\\) has parameter \\$sortClauseName with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Possibly invalid array key type \\(array\\\\|string\\)\\.$#" + count: 2 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\:\\:\\$criterionIdMap type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Ancestor\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Ancestor.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\Ancestor\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Ancestor\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Ancestor.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentId.php + + - + message: "#^Parameter \\#1 \\$value of class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ContentId constructor expects array\\\\|int, array\\ given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ContentId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentRemoteId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentRemoteId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\RemoteId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentRemoteId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentRemoteId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentTypeGroupId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentTypeGroupId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ContentTypeGroupId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentTypeGroupId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentTypeGroupId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentTypeId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentTypeId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ContentTypeId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentTypeId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentTypeId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentTypeIdentifier\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentTypeIdentifier.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ContentTypeId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ContentTypeIdentifier\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ContentTypeIdentifier.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\DateMetadata\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\DateMetadata\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/DateMetadata.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Field\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Field.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\Field\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Field\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Field.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\FullText\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/FullText.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\FullText\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\FullText\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/FullText.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\IsUserBased\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/IsUserBased.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\IsUserBased\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\IsUserBased\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/IsUserBased.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\IsUserEnabled\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/IsUserEnabled.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\IsUserEnabled\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\IsUserEnabled\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/IsUserEnabled.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LanguageCode\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LanguageCode.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\LanguageCode\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LanguageCode\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LanguageCode.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LocationId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LocationId.php + + - + message: "#^Parameter \\#1 \\$value of class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\LocationId constructor expects array\\\\|int, array\\ given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LocationId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\LocationId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LocationId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LocationId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LocationRemoteId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LocationRemoteId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\LocationRemoteId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LocationRemoteId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LocationRemoteId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalAnd\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalAnd.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalNot\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalNot.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\LogicalNot\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalNot\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalNot.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOperator\\:\\:getFlattenedCriteriaData\\(\\) has parameter \\$criteriaByType with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalOperator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOperator\\:\\:getFlattenedCriteriaData\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalOperator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOperator\\:\\:isZeroBasedArray\\(\\) has parameter \\$value with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalOperator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOperator\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalOperator.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\LogicalOperator\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOperator\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalOperator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOr\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/LogicalOr.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\MoreLikeThis\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/MoreLikeThis.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\MoreLikeThis\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\MoreLikeThis\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/MoreLikeThis.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ObjectStateId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ObjectStateId.php + + - + message: "#^Parameter \\#1 \\$value of class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ObjectStateId constructor expects array\\\\|int, array\\ given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ObjectStateId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ObjectStateId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ObjectStateId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ObjectStateId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ObjectStateIdentifier\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ObjectStateIdentifier.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ObjectStateIdentifier\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ObjectStateIdentifier\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ObjectStateIdentifier.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Operator\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Operator.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\Operator\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Operator\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Operator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ParentLocationId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ParentLocationId.php + + - + message: "#^Parameter \\#1 \\$value of class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ParentLocationId constructor expects array\\\\|int, array\\ given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ParentLocationId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ParentLocationId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ParentLocationId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ParentLocationId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ParentLocationRemoteId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ParentLocationRemoteId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\ParentLocationId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\ParentLocationRemoteId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/ParentLocationRemoteId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\SectionId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/SectionId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\SectionId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\SectionId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/SectionId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\SectionIdentifier\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/SectionIdentifier.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\SectionIdentifier\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\SectionIdentifier\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/SectionIdentifier.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Sibling\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Sibling.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\Sibling\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Sibling\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Sibling.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Subtree\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Subtree.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\Subtree\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Subtree\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Subtree.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserEmail\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserEmail.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\UserEmail\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserEmail\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserEmail.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserId\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserId.php + + - + message: "#^Parameter \\#1 \\$value of class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\UserId constructor expects array\\\\|int, array\\ given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserId.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\UserId\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserId\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserId.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserLogin\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserLogin.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\UserLogin\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserLogin\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserLogin.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadata\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserMetadata.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\UserMetadata\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadata\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/UserMetadata.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Visibility\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Visibility.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\\\Visibility\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\Visibility\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/Criterion/Visibility.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\ContentTypeParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/ContentTypeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\CriterionParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/CriterionParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\DateRangeParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/DateRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\FieldParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/FieldParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\FieldRangeParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/FieldRangeParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\LocationParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/LocationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\SectionParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/SectionParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\TermParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/TermParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FacetBuilder\\\\UserParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FacetBuilder/UserParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FieldDefinitionCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdate\\:\\:getFieldDefinition\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FieldDefinitionUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/FieldDefinitionUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\JWTInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/JWTInput.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\JWTInput\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\JWTInput\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/JWTInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\PathStringRouteBasedLimitationParser\\:\\:parseIdFromHref\\(\\) has parameter \\$limitationValue with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Limitation/PathStringRouteBasedLimitationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\RouteBasedLimitationParser\\:\\:buildLimitation\\(\\) should return eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation but returns object\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Limitation/RouteBasedLimitationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\RouteBasedLimitationParser\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Limitation/RouteBasedLimitationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\RouteBasedLimitationParser\\:\\:parseIdFromHref\\(\\) has parameter \\$limitationValue with no type specified\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Limitation/RouteBasedLimitationParser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\LocationCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/LocationCreate.php + + - + message: "#^Parameter \\#1 \\$parentLocationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:newLocationCreateStruct\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/LocationCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\LocationUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/LocationUpdate.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestLocationUpdateStruct\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\LocationUpdate\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/LocationUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ObjectStateCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ObjectStateGroupCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ObjectStateGroupUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ObjectStateUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ObjectStateUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\PolicyCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/PolicyCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\PolicyUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/PolicyUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Query\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Query\\:\\:processCriteriaArray\\(\\) has parameter \\$criteriaArray with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Query\\:\\:processSortClauses\\(\\) has parameter \\$sortClausesArray with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Query\\:\\:processSortClauses\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\:\\:\\$facetBuilders \\(array\\\\) does not accept array\\, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\>\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\:\\:\\$filter \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\|null\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\:\\:\\$query \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\Criterion\\|null\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/Query.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\RelationCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/RelationCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/RoleAssignInput.php + + - + message: "#^Parameter \\#2 \\$limitation of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RoleAssignment constructor expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation\\\\RoleLimitation\\|null, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\|null given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/RoleAssignInput.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RoleAssignment\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInput\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/RoleAssignInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\RoleInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/RoleInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SectionInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SectionInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SessionInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SessionInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\DataKeyValueObjectClass\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SortClause/DataKeyValueObjectClass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\DataKeyValueObjectClass\\:\\:parse\\(\\) should return eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject but returns object\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SortClause/DataKeyValueObjectClass.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\Field\\:\\:normalizeData\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SortClause/Field.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\Field\\:\\:normalizeData\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SortClause/Field.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\Field\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/SortClause/Field.php + + - + message: "#^Return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\\\SortClause\\\\Field\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\Field\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/SortClause/Field.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\URLAliasCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/URLAliasCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\URLAliasCreate\\:\\:parse\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/URLAliasCreate.php + + - + message: "#^Return type \\(array\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\URLAliasCreate\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/URLAliasCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/URLWildcardCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreate\\:\\:parse\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/URLWildcardCreate.php + + - + message: "#^Return type \\(array\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreate\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/URLWildcardCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\UserCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserGroupCreate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserGroupUpdate.php + + - + message: "#^Parameter \\#1 \\$contentInfoId of method EzSystems\\\\EzPlatformRest\\\\Input\\\\FieldTypeParser\\:\\:parseFieldValue\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserGroupUpdate.php + + - + message: "#^Parameter \\#1 \\$fieldDefIdentifier of method eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\ContentStruct\\:\\:setField\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserGroupUpdate.php + + - + message: "#^Parameter \\#1 \\$locationId of method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:loadLocation\\(\\) expects int, string given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserGroupUpdate.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroupUpdateStruct\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdate\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/UserGroupUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\UserUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserUpdate.php + + - + message: "#^Parameter \\#1 \\$fieldDefIdentifier of method eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\ContentStruct\\:\\:setField\\(\\) expects string, int\\|string given\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/UserUpdate.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserUpdateStruct\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\UserUpdate\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/UserUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\VersionUpdate\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/VersionUpdate.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ViewInput\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ViewInput.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestViewInput\\:\\:\\$query \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ViewInput.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestViewInput\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ViewInput\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/ViewInput.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOne\\:\\:parse\\(\\) has parameter \\$data with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ViewInputOneDotOne.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestViewInput\\:\\:\\$query \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Query\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\.$#" + count: 1 + path: src/lib/Server/Input/Parser/ViewInputOneDotOne.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestViewInput\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOne\\:\\:parse\\(\\) should be compatible with return type \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ValueObject\\) of method EzSystems\\\\EzPlatformRest\\\\Input\\\\Parser\\:\\:parse\\(\\)$#" + count: 1 + path: src/lib/Server/Input/Parser/ViewInputOneDotOne.php + + - + message: "#^PHPDoc tag @var above a method has no effect\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Author.php + + - + message: "#^PHPDoc tag @var does not specify variable name\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Author.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\BookmarkList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/BookmarkList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/BookmarkList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValue\\:\\:getParameter\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValue\\:\\:getParameter\\(\\) has parameter \\$defaultValue with no type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValue\\:\\:getParameter\\(\\) has parameter \\$parameterName with no type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValue\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Conflict\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Conflict.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Translation\\:\\:\\$message\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationException.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Translation\\:\\:\\$values\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationException.php + + - + message: "#^Access to protected property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Translation\\\\Plural\\:\\:\\$plural\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationException.php + + - + message: "#^Access to protected property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Translation\\\\Plural\\:\\:\\$singular\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationException.php + + - + message: "#^Argument of an invalid type eZ\\\\Publish\\\\Core\\\\FieldType\\\\ValidationError supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationException.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentFieldValidationException\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationException.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startAttribute\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroup\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroup\\:\\:visitContentTypeGroupAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeInfoList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeInfoList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeInfoList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ContentTypeList.php + + - + message: "#^Access to offset 'Alpha2' on an unknown class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\Countries\\.$#" + count: 2 + path: src/lib/Server/Output/ValueObjectVisitor/CountryList.php + + - + message: "#^Access to offset 'Alpha3' on an unknown class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\Countries\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CountryList.php + + - + message: "#^Access to offset 'IDC' on an unknown class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\Countries\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CountryList.php + + - + message: "#^Access to offset 'Name' on an unknown class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\Countries\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CountryList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CountryList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CountryList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedContent\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedContent.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedContent\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedContent\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContent\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedContent.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedContentType\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedContentType.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedContentType\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedContentType\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContentType\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentType\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedContentType.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedContentTypeGroup\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedContentTypeGroup.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedContentTypeGroup\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedContentTypeGroup\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\ContentTypeGroup\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroup\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedContentTypeGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedFieldDefinition\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedFieldDefinition.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedFieldDefinition\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedFieldDefinition\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestFieldDefinition\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinition\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedFieldDefinition.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedLocation\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedLocation.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedLocation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedLocation\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestLocation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocation\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedLocation.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedObjectState\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedObjectState.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedObjectState\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedObjectState\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Values\\\\RestObjectState\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectState\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedObjectStateGroup\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedObjectStateGroup.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedObjectStateGroup\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedObjectStateGroup\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ObjectState\\\\ObjectStateGroup\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroup\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedObjectStateGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedPolicy\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedPolicy.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedPolicy\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedPolicy\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\PolicyDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedPolicy.php + + - + message: "#^Parameter \\#3 \\$data of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy\\:\\:visit\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\PolicyDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Policy given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedPolicy.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedRelation\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedRelation.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedRelation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedRelation\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestRelation\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelation\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedRelation.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestRole\\:\\:\\$id\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedRole.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedRole\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedRole.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedRole\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedRole\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\RoleDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedRole.php + + - + message: "#^Parameter \\#3 \\$data of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visit\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\RoleDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role, EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestRole given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedRole.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedSection\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedSection.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedSection\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedSection\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Section\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Section\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedSection.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedURLAlias\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedURLAlias.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedURLAlias\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedURLAlias\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\URLAlias\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAlias\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedURLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedURLWildcard\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedURLWildcard.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedURLWildcard\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedURLWildcard\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\URLWildcard\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcard\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedURLWildcard.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedUser\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedUser.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedUser\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedUser\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUser\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUser\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedUser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedUserGroup\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedUserGroup.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedUserGroup\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedUserGroup\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroup\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroup\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedUserGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedVersion\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedVersion.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CreatedVersion\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CreatedVersion\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\Version\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Version\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/CreatedVersion.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\DeletedUserSession\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/DeletedUserSession.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\DeletedUserSession\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\DeletedUserSession\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\NoContent\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\NoContent\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/DeletedUserSession.php + + - + message: "#^Parameter \\#3 \\$data of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\NoContent\\:\\:visit\\(\\) expects EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\NoContent, EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\DeletedUserSession given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/DeletedUserSession.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Exception\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Exception.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Exception\\:\\:\\$httpStatusCodes type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Exception.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Exception\\:\\:\\$translator \\(Symfony\\\\Contracts\\\\Translation\\\\TranslatorInterface\\) does not accept Symfony\\\\Contracts\\\\Translation\\\\TranslatorInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Exception.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\FieldDefinitionList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/FieldDefinitionList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/FieldDefinitionList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariation\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ImageVariation.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariation\\:\\:visitImageVariationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ImageVariation.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int\\\\|int\\<1, max\\> given\\.$#" + count: 3 + path: src/lib/Server/Output/ValueObjectVisitor/ImageVariation.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Location\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Location.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Location\\:\\:visitLocationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Location.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 4 + path: src/lib/Server/Output/ValueObjectVisitor/Location.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent constructor expects array\\\\|null, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Location.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\LocationList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/LocationList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\NoContent\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/NoContent.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\OK\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/OK.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroup\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ObjectStateGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroup\\:\\:visitObjectStateGroupAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ObjectStateGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ObjectStateList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ObjectStateList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Options\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Options.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Options.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PermanentRedirect\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PermanentRedirect.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Policy.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy\\:\\:visitPolicyAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Policy.php + + - + message: "#^Parameter \\#3 \\$data of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy\\:\\:visitPolicyAttributes\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Policy, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\PolicyDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Policy given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Policy.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PolicyList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PolicyList.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestRole\\:\\:\\$id\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PublishedRole.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PublishedRole\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PublishedRole.php + + - + message: "#^Parameter \\#3 \\$data \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\PublishedRole\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PublishedRole\\:\\:visit\\(\\) should be compatible with parameter \\$data \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\RoleDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\) of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visit\\(\\)$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PublishedRole.php + + - + message: "#^Parameter \\#3 \\$data of method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visit\\(\\) expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\RoleDraft\\|EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role, EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestRole given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/PublishedRole.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RelationList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RelationList.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ResourceCreated\\:\\:\\$redirectUri\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ResourceCreated.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ResourceCreated\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/ResourceCreated.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContent\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestContent.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startAttribute\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestContent.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestContent.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestContent.php + + - + message: "#^Parameter \\#2 \\$whatIsWrong of class eZ\\\\Publish\\\\Core\\\\Base\\\\Exceptions\\\\BadStateException constructor expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestContent.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentType\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestContentType.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Content\\:\\:\\$valueObject\\.$#" + count: 4 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestExecutedView\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startAttribute\\(\\) expects string, float given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, float given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int\\|null given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent constructor expects array\\\\|null, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestExecutedView.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinition\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestFieldDefinition.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestFieldDefinition.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocation\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestLocation.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 4 + path: src/lib/Server/Output/ValueObjectVisitor/RestLocation.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ObjectState\\\\ObjectState\\:\\:\\$defaultLanguageCode\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectState\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestObjectState.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestObjectState.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelation\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestRelation.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItem\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestTrashItem.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 4 + path: src/lib/Server/Output/ValueObjectVisitor/RestTrashItem.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Content\\:\\:\\$email\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUser.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Content\\:\\:\\$enabled\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUser.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Content\\:\\:\\$login\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUser\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUser.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startAttribute\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUser.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroup\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUserGroup.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startAttribute\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUserGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupRoleAssignment\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUserGroupRoleAssignment.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserRoleAssignment\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RestUserRoleAssignment.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visitRoleAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Role\\:\\:visitRoleAttributes\\(\\) has parameter \\$data with no type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Role.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleAssignmentList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RoleAssignmentList.php + + - + message: "#^Parameter \\#1 \\$roleAssignment of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroupRoleAssignment constructor expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\UserGroupRoleAssignment, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\RoleAssignment given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RoleAssignmentList.php + + - + message: "#^Parameter \\#1 \\$roleAssignment of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserRoleAssignment constructor expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\UserRoleAssignment, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\RoleAssignment given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RoleAssignmentList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RoleList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/RoleList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Root\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Root.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Section\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Section.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Section\\:\\:visitSectionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Section.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/SectionList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/SectionList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SeeOther\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/SeeOther.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\TemporaryRedirect\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/TemporaryRedirect.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Trash\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Trash.php + + - + message: "#^Access to protected property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\URLAlias\\:\\:\\$languageCodes\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAlias\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAlias\\:\\:visitURLAliasAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLAlias.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLAliasList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasRefList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLAliasRefList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcard\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLWildcard.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcard\\:\\:visitURLWildcardAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLWildcard.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/URLWildcardList.php + + - + message: "#^Parameter \\#4 \\$mainLocation of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUser constructor expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Location, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Location\\|null given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/User.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUser constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/User.php + + - + message: "#^Parameter \\#4 \\$mainLocation of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroup constructor expects eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Location, eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Location\\|null given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserGroup.php + + - + message: "#^Parameter \\#5 \\$relations of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestUserGroup constructor expects array\\, iterable\\ given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserGroup.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserGroupList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserGroupList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserGroupRefList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserGroupRefList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserRefList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserRefList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserRefList.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserSession\\:\\:\\$created\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserSession.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSession\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserSession.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSession\\:\\:visitUserSessionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserSession.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/UserSession.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Version\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Version.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Version\\:\\:visitField\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Version.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Version\\:\\:visitVersionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Version.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int\\|null given\\.$#" + count: 2 + path: src/lib/Server/Output/ValueObjectVisitor/Version.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, string\\|null given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/Version.php + + - + message: "#^Access to an undefined property eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\VersionInfo\\:\\:\\$names\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionInfo.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfo\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionInfo.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfo\\:\\:visitVersionInfoAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionInfo.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) expects string, int given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionInfo.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionList\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionList.php + + - + message: "#^Parameter \\#2 \\$value of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\:\\:setHeader\\(\\) expects string, false given\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionTranslationInfo\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionTranslationInfo.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionTranslationInfo\\:\\:visitVersionTranslationInfoAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Output/ValueObjectVisitor/VersionTranslationInfo.php + + - + message: "#^Call to an undefined method eZ\\\\Publish\\\\Core\\\\MVC\\\\Symfony\\\\Security\\\\UserInterface\\:\\:isEqualTo\\(\\)\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Cannot call method getUser\\(\\) on Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestAuthenticator\\:\\:__construct\\(\\) has parameter \\$providerKey with no type specified\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestAuthenticator\\:\\:__invoke\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestAuthenticator\\:\\:addLogoutHandler\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestAuthenticator\\:\\:authenticate\\(\\) should return Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface but returns Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Parameter \\#1 \\$object of function get_class expects object, Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface\\|null given\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Parameter \\#1 \\$token of method Symfony\\\\Component\\\\Security\\\\Core\\\\Exception\\\\AuthenticationException\\:\\:setToken\\(\\) expects Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface, Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface\\|null given\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Parameter \\#3 \\$roles of class Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\UsernamePasswordToken constructor expects array\\, string given\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Parameter \\#3 \\$token of method Symfony\\\\Component\\\\Security\\\\Http\\\\Logout\\\\LogoutHandlerInterface\\:\\:logout\\(\\) expects Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface, Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\TokenInterface\\|null given\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestAuthenticator\\:\\:\\$logger \\(Psr\\\\Log\\\\LoggerInterface\\) does not accept Psr\\\\Log\\\\LoggerInterface\\|null\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Ternary operator condition is always true\\.$#" + count: 1 + path: src/lib/Server/Security/RestAuthenticator.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestLogoutHandler\\:\\:logout\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Security/RestLogoutHandler.php + + - + message: "#^PHPDoc tag @return with type array\\|EzSystems\\\\EzPlatformRest\\\\Values\\\\Root is not subtype of native type EzSystems\\\\EzPlatformRest\\\\Values\\\\Root\\.$#" + count: 1 + path: src/lib/Server/Service/ExpressionRouterRootResourceBuilder.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Service\\\\RootResourceBuilderInterface\\:\\:buildRootResource\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Service/RootResourceBuilderInterface.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\:\\:__construct\\(\\) has parameter \\$cacheTags with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Values/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\:\\:checkCacheTags\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/Values/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CachedValue\\:\\:checkCacheTags\\(\\) has parameter \\$tags with no type specified\\.$#" + count: 1 + path: src/lib/Server/Values/CachedValue.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CountryList\\:\\:__construct\\(\\) has parameter \\$countries with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Values/CountryList.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\CountryList\\:\\:\\$countries has unknown class eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\Countries as its type\\.$#" + count: 1 + path: src/lib/Server/Values/CountryList.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\Options\\:\\:__construct\\(\\) has parameter \\$allowedMethods with no type specified\\.$#" + count: 1 + path: src/lib/Server/Values/Options.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\Options\\:\\:\\$allowedMethods type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/Values/Options.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RelationList\\:\\:\\$path \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RelationList.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ResourceCreated\\:\\:\\$redirectUri\\.$#" + count: 1 + path: src/lib/Server/Values/ResourceCreated.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\ResourceCreated\\:\\:__construct\\(\\) has parameter \\$redirectUri with no type specified\\.$#" + count: 1 + path: src/lib/Server/Values/ResourceCreated.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent\\:\\:\\$contentType \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\ContentType\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\ContentType\\\\ContentType\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestContent.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent\\:\\:\\$currentVersion \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Content\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Content\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestContent.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent\\:\\:\\$mainLocation \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Location\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\Content\\\\Location\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestContent.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent\\:\\:\\$path \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestContent.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContent\\:\\:\\$relations \\(array\\\\) does not accept array\\\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestContent.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestContentType\\:\\:\\$fieldDefinitions \\(array\\\\) does not accept array\\\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestContentType.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RestLocationUpdateStruct\\:\\:\\$hidden \\(bool\\) does not accept bool\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RestLocationUpdateStruct.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\RoleAssignment\\:\\:\\$limitation \\(eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation\\\\RoleLimitation\\) does not accept eZ\\\\Publish\\\\API\\\\Repository\\\\Values\\\\User\\\\Limitation\\\\RoleLimitation\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/RoleAssignment.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\SeeOther\\:\\:\\$redirectUri\\.$#" + count: 1 + path: src/lib/Server/Values/SeeOther.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\SeeOther\\:\\:__construct\\(\\) has parameter \\$redirectUri with no type specified\\.$#" + count: 1 + path: src/lib/Server/Values/SeeOther.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserSession\\:\\:\\$created\\.$#" + count: 1 + path: src/lib/Server/Values/UserSession.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\UserSession\\:\\:__construct\\(\\) has parameter \\$created with no type specified\\.$#" + count: 1 + path: src/lib/Server/Values/UserSession.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\Version\\:\\:\\$path \\(string\\) does not accept string\\|null\\.$#" + count: 1 + path: src/lib/Server/Values/Version.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Server\\\\View\\\\AcceptHeaderVisitorDispatcher\\:\\:addVisitor\\(\\) has no return type specified\\.$#" + count: 1 + path: src/lib/Server/View/AcceptHeaderVisitorDispatcher.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Server\\\\View\\\\AcceptHeaderVisitorDispatcher\\:\\:\\$mapping type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Server/View/AcceptHeaderVisitorDispatcher.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Values\\\\ContentObjectStates\\:\\:__construct\\(\\) has parameter \\$states with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Values/ContentObjectStates.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Values\\\\ContentObjectStates\\:\\:\\$states type has no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Values/ContentObjectStates.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Values\\\\Resource\\:\\:__construct\\(\\) has parameter \\$href with no type specified\\.$#" + count: 1 + path: src/lib/Values/Resource.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Values\\\\Resource\\:\\:__construct\\(\\) has parameter \\$mediaType with no type specified\\.$#" + count: 1 + path: src/lib/Values/Resource.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Values\\\\Resource\\:\\:__construct\\(\\) has parameter \\$name with no type specified\\.$#" + count: 1 + path: src/lib/Values/Resource.php + + - + message: "#^Class EzSystems\\\\EzPlatformRest\\\\Values\\\\Resource referenced with incorrect case\\: EzSystems\\\\EzPlatformRest\\\\Values\\\\resource\\.$#" + count: 2 + path: src/lib/Values/Root.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Values\\\\Root\\:\\:__construct\\(\\) has parameter \\$resources with no value type specified in iterable type array\\.$#" + count: 1 + path: src/lib/Values/Root.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:getProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:testGetOptions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:testGetOptionsException\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:testGetOptionsMethodNotAllowed\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:testGetOptionsNoMethods\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:testGetOptionsNotRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:testGetOptionsResourceNotFound\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\CorsOptions\\\\RestProviderTest\\:\\:\\$matchRequestResult has no type specified\\.$#" + count: 1 + path: tests/bundle/CorsOptions/RestProviderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\FieldTypeProcessorPassTest\\:\\:dataProviderForProcess\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/FieldTypeProcessorPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\InputHandlerPassTest\\:\\:testProcess\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/InputHandlerPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\InputParserPassTest\\:\\:testProcess\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/InputParserPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\OutputVisitorPassTest\\:\\:getVisitorsInRegistrationOrder\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/OutputVisitorPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\OutputVisitorPassTest\\:\\:testPriority\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/OutputVisitorPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\OutputVisitorPassTest\\:\\:testProcess\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/OutputVisitorPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\DependencyInjection\\\\Compiler\\\\ValueObjectVisitorPassTest\\:\\:testProcess\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/DependencyInjection/Compiler/ValueObjectVisitorPassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getCsrfProviderMock\\(\\) has invalid return type Symfony\\\\Component\\\\Form\\\\Extension\\\\Csrf\\\\CsrfProvider\\\\CsrfProviderInterface\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getCsrfProviderMock\\(\\) should return PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Form\\\\Extension\\\\Csrf\\\\CsrfProvider\\\\CsrfProviderInterface but returns PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Security\\\\Csrf\\\\CsrfTokenManagerInterface\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getEvent\\(\\) has parameter \\$class with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getEvent\\(\\) should return PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpKernel\\\\Event\\\\RequestEvent but returns Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getEventDispatcherMock\\(\\) should return PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface but returns Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getIgnoredRequestMethods\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:getSessionMock\\(\\) should return PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\Session\\\\SessionInterface but returns Symfony\\\\Component\\\\HttpFoundation\\\\Session\\\\SessionInterface\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:provideExpectedSubscribedEventTypes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:provideSessionRoutes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testCsrfDisabled\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testIgnoredRequestMethods\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testInvalidToken\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testIsNotRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testNoHeader\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testNoSessionStarted\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testSessionRequests\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testSessionRequests\\(\\) has parameter \\$route with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:testValidToken\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Parameter \\#4 \\$csrfTokenManager of class EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\CsrfListener constructor expects Symfony\\\\Component\\\\Security\\\\Csrf\\\\CsrfTokenManagerInterface\\|null, PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Form\\\\Extension\\\\Csrf\\\\CsrfProvider\\\\CsrfProviderInterface given\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$csrfTokenHeaderValue has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$eventDispatcherMock \\(Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$requestMethod has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$route \\(string\\) does not accept false\\.$#" + count: 4 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$sessionIsStarted has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$sessionMock \\(Symfony\\\\Component\\\\HttpFoundation\\\\Session\\\\SessionInterface\\) does not accept false\\.$#" + count: 2 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\CsrfListenerTest\\:\\:\\$sessionMock \\(Symfony\\\\Component\\\\HttpFoundation\\\\Session\\\\SessionInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$event \\(Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestHeadersMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\ParameterBag\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\Request\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/CsrfListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:getEvent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:getEvent\\(\\) has parameter \\$class with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:provideExpectedSubscribedEventTypes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:testGetSubscribedEvents\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:testGetSubscribedEvents\\(\\) has parameter \\$expectedEventTypes with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^PHPDoc tag @param references unknown parameter\\: \\$csrfEnabled$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^PHPDoc tag @return has invalid value \\(MockObject\\|\\$class\\)\\: Unexpected token \"\\$class\", expected type at offset 30$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$enableCsrfProtection has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$event \\(Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface\\) does not accept PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$event \\(Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$isRestRequest has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestAttributesMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\ParameterBag\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestHeadersMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\ParameterBag\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestMethod has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\Request\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$requestType has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Property Symfony\\\\Component\\\\HttpFoundation\\\\Request\\:\\:\\$headers \\(Symfony\\\\Component\\\\HttpFoundation\\\\HeaderBag\\) does not accept PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpFoundation\\\\ParameterBag\\.$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Unable to resolve the template type T in call to method PHPUnit\\\\Framework\\\\TestCase\\:\\:getMockBuilder\\(\\)$#" + count: 1 + path: tests/bundle/EventListener/EventListenerTest.php + + - + message: "#^Class EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\RequestListener does not have a constructor and must be instantiated without any parameters\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:nonRestRequestsUrisProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:performFakeRequest\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:performFakeRequest\\(\\) has parameter \\$uri with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:provideExpectedSubscribedEventTypes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:restRequestUrisProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testNonRestRequestVariations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testNonRestRequestVariations\\(\\) has parameter \\$uri with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testOnKernelRequestNotMasterRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testOnKernelRequestNotRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testOnKernelRequestRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testRestRequestVariations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:testRestRequestVariations\\(\\) has parameter \\$uri with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\RequestListener\\) of method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\RequestListenerTest\\:\\:getEventListener\\(\\) should be compatible with return type \\(EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\CsrfListener\\) of method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:getEventListener\\(\\)$#" + count: 1 + path: tests/bundle/EventListener/RequestListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:getControllerResultEvent\\(\\) should return Symfony\\\\Component\\\\HttpKernel\\\\Event\\\\ViewEvent but returns Symfony\\\\Contracts\\\\EventDispatcher\\\\Event\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:getExceptionEvent\\(\\) should return Symfony\\\\Component\\\\HttpKernel\\\\Event\\\\ExceptionEvent but returns Symfony\\\\Contracts\\\\EventDispatcher\\\\Event\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:onKernelView\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:onKernelView\\(\\) has parameter \\$event with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:onKernelView\\(\\) has parameter \\$method with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:onKernelView\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:onKernelViewIsNotRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:onKernelViewIsNotRestRequest\\(\\) has parameter \\$method with no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:provideExpectedSubscribedEventTypes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:testOnControllerResultView\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:testOnKernelExceptionView\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:testOnKernelExceptionViewIsNotRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:testOnKernelResultViewIsNotRestRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^PHPDoc type Symfony\\\\Contracts\\\\EventDispatcher\\\\Event of property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:\\$event is not covariant with PHPDoc type Symfony\\\\Component\\\\EventDispatcher\\\\EventDispatcherInterface of overridden property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:\\$event\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:\\$controllerResult has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:\\$dispatcherMessage has no type specified\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:\\$event \\(Symfony\\\\Contracts\\\\EventDispatcher\\\\Event\\) in isset\\(\\) is not nullable\\.$#" + count: 2 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:\\$kernelMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\HttpKernel\\\\KernelInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:\\$visitorDispatcherMock \\(EzSystems\\\\EzPlatformRest\\\\Server\\\\View\\\\AcceptHeaderVisitorDispatcher&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Return type \\(EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\ResponseListener\\) of method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\ResponseListenerTest\\:\\:getEventListener\\(\\) should be compatible with return type \\(EzSystems\\\\EzPlatformRestBundle\\\\EventListener\\\\CsrfListener\\) of method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\EventListener\\\\EventListenerTest\\:\\:getEventListener\\(\\)$#" + count: 1 + path: tests/bundle/EventListener/ResponseListenerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\BinaryContentTest\\:\\:createContentTypeWithImageAsset\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/BinaryContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\BinaryContentTest\\:\\:testGetImageAssetVariations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/BinaryContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\BinaryContentTest\\:\\:testGetImageVariation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/BinaryContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:assertTranslationDoesNotExist\\(\\) has parameter \\$versionItem with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:assertVersionResponseContainsExpectedFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:createContentDraft\\(\\) has parameter \\$fieldValues with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:createContentDraft\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:createVersionTranslation\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:getVersionInfoFromJSONVersionListByStatus\\(\\) has parameter \\$versionList with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:getVersionInfoFromJSONVersionListByStatus\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:loadContent\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:publishContentVersionDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testCopyContent\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testCreateRelation\\(\\) has parameter \\$restContentVersionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testDeleteContent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testDeleteContent\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testDeleteContentVersion\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testDeleteTranslation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testDeleteTranslationFromDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testDeleteTranslationOfContentWithSingleTranslationVersion\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadContent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadContent\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadContentVersion\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadContentVersions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadContentVersions\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadContentVersionsProvidesDeleteTranslationFromDraftResourceLink\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadVersionRelation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadVersionRelation\\(\\) has parameter \\$restContentRelationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadVersionRelations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testLoadVersionRelations\\(\\) has parameter \\$restContentVersionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testPublishContent\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testRedirectContent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testRedirectContent\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testRedirectCurrentVersion\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testRedirectCurrentVersionRelations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testRedirectCurrentVersionRelations\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testUpdateContentMetadata\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testUpdateContentMetadata\\(\\) has parameter \\$restContentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:testUpdateVersion\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTest\\:\\:updateMainTranslation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^PHPDoc tag @throws with type Psr\\\\Http\\\\Client\\\\ClientException is not subtype of Throwable$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:deleteContentTypeDraftFieldDefinition\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testAddContentTypeDraftFieldDefinition\\(\\) has parameter \\$contentTypeDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testContentTypeLoadFieldDefinitionList\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testCopyContentType\\(\\) has parameter \\$sourceContentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testCreateContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testCreateContentType\\(\\) has parameter \\$contentTypeGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testCreateContentTypeDraft\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testCreateContentTypeGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testDeleteContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testDeleteContentType\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testDeleteContentTypeDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testDeleteContentTypeDraft\\(\\) has parameter \\$contentTypeDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testDeleteContentTypeGroupNotEmpty\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testDeleteContentTypeGroupNotEmpty\\(\\) has parameter \\$contentTypeGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLinkContentTypeToGroup\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testListContentTypes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testListContentTypesByIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testListContentTypesByRemoteId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testListContentTypesForGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentType\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeDraft\\(\\) has parameter \\$contentTypeDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeFieldDefinition\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeGroupList\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeGroupListWithIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeGroupNotFound\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeNotFound\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadContentTypeNotFound\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadGroupsOfContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testLoadGroupsOfContentType\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testPublishContentTypeDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testPublishContentTypeDraft\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUnlinkContentTypeFromGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUnlinkContentTypeFromGroup\\(\\) has parameter \\$contentTypeHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUpdateContentTypeDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUpdateContentTypeDraft\\(\\) has parameter \\$contentTypeDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUpdateContentTypeDraftFieldDefinition\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUpdateContentTypeDraftFieldDefinition\\(\\) has parameter \\$fieldDefinitionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ContentTypeTest\\:\\:testUpdateContentTypeGroup\\(\\) has parameter \\$contentTypeGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^PHPDoc tag @throws with type Psr\\\\Http\\\\Client\\\\ClientException is not subtype of Throwable$#" + count: 2 + path: tests/bundle/Functional/ContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\HttpOptionsTest\\:\\:providerForTestHttpOptions\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/HttpOptionsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testCopySubtree\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testCreateLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testDeleteSubtree\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testDeleteSubtree\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testLoadLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testLoadLocation\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testLoadLocationChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testLoadLocationChildren\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testLoadLocationsForContent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testLoadLocationsForContent\\(\\) has parameter \\$contentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testMoveSubtree\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testMoveSubtree\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testRedirectLocationById\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testRedirectLocationById\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testRedirectLocationByRemoteId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testRedirectLocationByRemoteId\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testRedirectLocationByURLAlias\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testRedirectLocationByURLAlias\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testSwapLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testSwapLocation\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testUpdateLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\LocationTest\\:\\:testUpdateLocation\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testCreateObjectState\\(\\) has parameter \\$objectStateGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testDeleteObjectState\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testDeleteObjectState\\(\\) has parameter \\$objectStateHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testDeleteObjectStateGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testDeleteObjectStateGroup\\(\\) has parameter \\$objectStateGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testGetObjectStatesForContent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testGetObjectStatesForContent\\(\\) has parameter \\$contentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectState\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectState\\(\\) has parameter \\$objectStateHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectStateGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectStateGroup\\(\\) has parameter \\$objectStateGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectStateGroups\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectStates\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testLoadObjectStates\\(\\) has parameter \\$objectStateGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testSetObjectStatesForContent\\(\\) has parameter \\$objectStateHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testUpdateObjectState\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testUpdateObjectState\\(\\) has parameter \\$objectStateHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testUpdateObjectStateGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ObjectStateTest\\:\\:testUpdateObjectStateGroup\\(\\) has parameter \\$objectStateGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RelationTest\\:\\:testRelation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:provideLimitations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testAddPolicy\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testAddPolicyByRoleDraft\\(\\) has parameter \\$roleDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testAssignRoleToUser\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testAssignRoleToUserGroup\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testAssignRoleToUserWithLimitation\\(\\) has parameter \\$limitation with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testCreateRoleDraft\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeletePolicies\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeletePolicies\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeletePolicy\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeletePolicy\\(\\) has parameter \\$policyHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeleteRole\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeleteRole\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeleteRoleDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testDeleteRoleDraft\\(\\) has parameter \\$roleDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testListPoliciesForUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testListRoles\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadPolicies\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadPolicies\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadPolicy\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadPolicy\\(\\) has parameter \\$policyHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRole\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRole\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleAssignmentForUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleAssignmentForUser\\(\\) has parameter \\$roleAssignmentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleAssignmentForUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleAssignmentForUserGroup\\(\\) has parameter \\$roleAssignmentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleAssignmentsForUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleAssignmentsForUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testLoadRoleDraft\\(\\) has parameter \\$roleDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testPublishRoleDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testPublishRoleDraft\\(\\) has parameter \\$roleDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testRemovePolicyByRoleDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testRemovePolicyByRoleDraft\\(\\) has parameter \\$policyHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUnassignRoleFromUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUnassignRoleFromUser\\(\\) has parameter \\$roleAssignmentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUnassignRoleFromUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUnassignRoleFromUserGroup\\(\\) has parameter \\$roleAssignmentHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdatePolicy\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdatePolicy\\(\\) has parameter \\$policyHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdatePolicyByRoleDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdatePolicyByRoleDraft\\(\\) has parameter \\$policyHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdateRole\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdateRole\\(\\) has parameter \\$roleHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdateRoleDraft\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RoleTest\\:\\:testUpdateRoleDraft\\(\\) has parameter \\$roleDraftHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^PHPDoc tag @param references unknown parameter\\: \\$roleHref$#" + count: 1 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 2 + path: tests/bundle/Functional/RoleTest.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\\\|false\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:assertXMLTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:assertXMLTag\\(\\) has parameter \\$matcher with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 54 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:getRandomUriSet\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testCatchAll\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testCatchAll\\(\\) has parameter \\$uri with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testLoadRootResource\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentByRemoteIdTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentByRemoteIdTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentByRemoteIdTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentByRemoteIdTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeByIdentifierTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeByIdentifierTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeByIdentifierTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeByIdentifierTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupByIdentifierTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupByIdentifierTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupByIdentifierTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupByIdentifierTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupsTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupsTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupsTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypeGroupsTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypesTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypesTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypesTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsContentTypesTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsCreateSessionTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsCreateSessionTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsCreateSessionTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsCreateSessionTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsGlobalUrlAliasesTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsGlobalUrlAliasesTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsGlobalUrlAliasesTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsGlobalUrlAliasesTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByPathTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByPathTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByPathTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByPathTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByRemoteIdTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByRemoteIdTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByRemoteIdTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsLocationByRemoteIdTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStateGroupsTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStateGroupsTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStateGroupsTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStateGroupsTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStatesTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStatesTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStatesTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsObjectStatesTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRefreshSessionTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRefreshSessionTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRefreshSessionTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRefreshSessionTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRolesTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRolesTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRolesTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRolesTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootElement\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootLocationTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootLocationTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootLocationTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootLocationTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootMediaFolderTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootMediaFolderTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootMediaFolderTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootMediaFolderTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootUserGroupTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootUserGroupTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootUserGroupTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsRootUserGroupTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsSectionTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsSectionTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsSectionsTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsSectionsTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsTrashTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsTrashTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsTrashTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsTrashTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUrlWildcardsTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUrlWildcardsTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUrlWildcardsTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUrlWildcardsTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByEmailTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByEmailTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByEmailTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByEmailTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByLoginTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByLoginTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByLoginTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByLoginTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRemoteIdentifierTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRemoteIdentifierTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRemoteIdentifierTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRemoteIdentifierTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRoleIdentifierTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRoleIdentifierTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRoleIdentifierTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersByRoleIdentifierTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsUsersTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsViewsTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsViewsTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsViewsTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\RootTest\\:\\:testResultContainsViewsTagAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 1 + path: tests/bundle/Functional/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\IsUserBasedTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/IsUserBasedTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\IsUserEnabledTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/IsUserEnabledTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\ObjectStateIdentifierTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/ObjectStateIdentifierTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\SectionIdentifierTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/SectionIdentifierTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\SiblingTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/SiblingTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\UserEmailTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/UserEmailTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\UserIdTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/UserIdTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\Criterion\\\\UserLoginTest\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/Criterion/UserLoginTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\SearchCriterionTestCase\\:\\:getCriteriaPayloads\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/SearchCriterionTestCase.php + + - + message: "#^Cannot call method saveXML\\(\\) on DOMDocument\\|null\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/SearchViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\SearchViewTest\\:\\:getXmlString\\(\\) should return string but returns string\\|false\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/SearchViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\SearchViewTest\\:\\:jsonProvider\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/SearchViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\SearchViewTest\\:\\:wrapIn\\(\\) has parameter \\$toWrap with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/SearchViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SearchView\\\\SearchViewTest\\:\\:xmlProvider\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/SearchView/SearchViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testDeleteSection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testDeleteSection\\(\\) has parameter \\$sectionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testListSections\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testLoadSection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testLoadSection\\(\\) has parameter \\$sectionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testLoadSectionByIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testLoadSectionByIdentifier\\(\\) has parameter \\$sectionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testUpdateSection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SectionTest\\:\\:testUpdateSection\\(\\) has parameter \\$sectionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SectionTest.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\\\|false\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Cannot access property \\$nodeValue on DOMNode\\|null\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\\\|false\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:assertHttpResponseDeletesSessionCookie\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:assertHttpResponseDeletesSessionCookie\\(\\) has parameter \\$session with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testCreateSessionBadCredentials\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testDeleteSession\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testDeleteSessionExpired\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testDeleteSessionExpired\\(\\) has parameter \\$session with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testDeleteSessionMissingCsrfToken\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testLoginWithExistingFrontendSession\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testRefreshSession\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testRefreshSessionExpired\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SessionTest\\:\\:testRefreshSessionMissingCsrfToken\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SortClauseTest\\:\\:sortingClauseDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SortClauseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SortClauseTest\\:\\:testFieldSortClause\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/SortClauseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SortClauseTest\\:\\:testFieldSortClause\\(\\) has parameter \\$foldersInExpectedOrder with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/SortClauseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\SortClauseTest\\:\\:testFieldSortClause\\(\\) has parameter \\$foldersNameToCreate with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/SortClauseTest.php + + - + message: "#^PHPDoc tag @throws with type Psr\\\\Http\\\\Client\\\\ClientException is not subtype of Throwable$#" + count: 1 + path: tests/bundle/Functional/SortClauseTest.php + + - + message: "#^Access to an undefined property object\\:\\:\\$line\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Access to an undefined property object\\:\\:\\$trace\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:addCreatedElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:addCreatedElement\\(\\) has parameter \\$href with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:addTestSuffix\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:addTestSuffix\\(\\) has parameter \\$string with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:assertHttpResponseCodeEquals\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:assertHttpResponseCodeEquals\\(\\) has parameter \\$expected with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:assertHttpResponseHasHeader\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:assertHttpResponseHasHeader\\(\\) has parameter \\$expectedValue with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:assertHttpResponseHasHeader\\(\\) has parameter \\$header with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:clearCreatedElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:clearCreatedElement\\(\\) has parameter \\$contentArray with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:createAuthenticationHttpRequest\\(\\) has parameter \\$extraHeaders with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:createContent\\(\\) has parameter \\$xml with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:createContent\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:createFolder\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:createHttpRequest\\(\\) has parameter \\$extraHeaders with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:generateMediaTypeString\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:generateMediaTypeString\\(\\) has parameter \\$typeString with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getContentLocations\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getHttpHost\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getHttpResponseCodeErrorMessage\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getHttpResponseCodeErrorMessage\\(\\) has parameter \\$errorMessage with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getLoginPassword\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getLoginUsername\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getMediaFromTypeString\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:getMediaFromTypeString\\(\\) has parameter \\$typeString with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:\\$createdContent type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:\\$headers type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TestCase\\:\\:\\$testSuffix has no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TestCase.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:createTrashItem\\(\\) has parameter \\$id with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testDeleteTrashItem\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testDeleteTrashItem\\(\\) has parameter \\$trashItemId with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testDeleteTrashedItemFailsWith404\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testEmptyTrash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testLoadTrashItem\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testLoadTrashItem\\(\\) has parameter \\$trashItemHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testLoadTrashItems\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testRestoreTrashItem\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testRestoreTrashItem\\(\\) has parameter \\$trashItemId with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\TrashTest\\:\\:testRestoreTrashItemWithDestination\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 2 + path: tests/bundle/Functional/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testCreateGlobalUrlAlias\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testCreateUrlAlias\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testCreateUrlAlias\\(\\) has parameter \\$locationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testDeleteURLAlias\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testDeleteURLAlias\\(\\) has parameter \\$urlAliasHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testListGlobalURLAliases\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testListLocationURLAliases\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testListLocationURLAliases\\(\\) has parameter \\$contentLocationHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testLoadURLAlias\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlAliasTest\\:\\:testLoadURLAlias\\(\\) has parameter \\$urlAliasHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 2 + path: tests/bundle/Functional/UrlAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlWildcardTest\\:\\:testCreateUrlWildcard\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlWildcardTest\\:\\:testDeleteURLWildcard\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlWildcardTest\\:\\:testDeleteURLWildcard\\(\\) has parameter \\$urlWildcardHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlWildcardTest\\:\\:testListURLWildcards\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlWildcardTest\\:\\:testLoadUrlWildcard\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UrlWildcardTest\\:\\:testLoadUrlWildcard\\(\\) has parameter \\$urlWildcardHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UrlWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:loadRootUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testAssignUserToUserGroup\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testCreateUser\\(\\) has parameter \\$userGroupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testDeleteSession\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testDeleteSession\\(\\) has parameter \\$sessionHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testDeleteUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testDeleteUser\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testDeleteUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testDeleteUserGroup\\(\\) has parameter \\$groupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testFilterUsersByEmailQueryParameter\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testFilterUsersByLoginQueryParameter\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testIfEmailIsUsedByAnotherUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testIfLoginIsUsedByAnotherUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadSubUserGroups\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadSubUserGroups\\(\\) has parameter \\$groupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUser\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserByRemoteId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserDrafts\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserDrafts\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroup\\(\\) has parameter \\$groupId with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroupByRemoteId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroupByRemoteId\\(\\) has parameter \\$groupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroups\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroupsOfUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUserGroupsOfUser\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUsers\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUsersFromGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testLoadUsersFromGroup\\(\\) has parameter \\$groupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testMoveUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testMoveUserGroup\\(\\) has parameter \\$groupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testUnassignUserFromUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testUnassignUserFromUserGroup\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testUpdateUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testUpdateUser\\(\\) has parameter \\$userHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testUpdateUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\UserTest\\:\\:testUpdateUserGroup\\(\\) has parameter \\$groupHref with no type specified\\.$#" + count: 1 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 2 + path: tests/bundle/Functional/UserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ViewTest\\:\\:testViewRequestWithAndStatement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Functional\\\\ViewTest\\:\\:testViewRequestWithOrStatement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Functional/ViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:getRouterMock\\(\\) should return PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Cmf\\\\Component\\\\Routing\\\\ChainRouter but returns Symfony\\\\Cmf\\\\Component\\\\Routing\\\\ChainRouter\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:testGenerate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:testParseHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:testParseHrefAttributeNotFound\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:testParseNoMatch\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:testParseNoPrefix\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:\\$routePrefix has no type specified\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\RequestParser\\\\RouterTest\\:\\:\\$router \\(Symfony\\\\Cmf\\\\Component\\\\Routing\\\\ChainRouter\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/bundle/RequestParser/RouterTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoader\\\\MapperTest\\:\\:testGetOptionsRouteName\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoader/MapperTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoader\\\\MapperTest\\:\\:testMapRoute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoader/MapperTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoader\\\\MapperTest\\:\\:testMergeMethodsDefault\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoader/MapperTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoader\\\\RouteCollectionMapperTest\\:\\:createRoute\\(\\) has parameter \\$methods with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoader/RouteCollectionMapperTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoader\\\\RouteCollectionMapperTest\\:\\:testAddRestRoutesCollection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoader/RouteCollectionMapperTest.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoaderTest\\:\\:\\$routeCollectionMapperMock\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoaderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoaderTest\\:\\:getResourceType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoaderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoaderTest\\:\\:testLoad\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoaderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRestBundle\\\\Tests\\\\Routing\\\\OptionsLoaderTest\\:\\:testSupportsResourceType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/bundle/Routing/OptionsLoaderTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\AuthorProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/AuthorProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\BinaryInputProcessorTest\\:\\:testPreProcessValueHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryInputProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\BinaryInputProcessorTest\\:\\:testPreProcessValueHashMissingKey\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryInputProcessorTest.php + + - + message: "#^Parameter \\#1 \\$filename of function unlink expects string, string\\|false given\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryInputProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\BinaryInputProcessorTest\\:\\:\\$tempDir has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryInputProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\BinaryProcessorTest\\:\\:testPostProcessValueHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/BinaryProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateAndTimeProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateAndTimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\DateProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/DateProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\ImageProcessorTest\\:\\:getRouterMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/ImageProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\ImageProcessorTest\\:\\:getVariations\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/ImageProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\ImageProcessorTest\\:\\:testPostProcessValueHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/ImageProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\ImageProcessorTest\\:\\:\\$requestParser \\(EzSystems\\\\EzPlatformRest\\\\RequestParser\\) does not accept PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Routing\\\\RouterInterface\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/ImageProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\ImageProcessorTest\\:\\:\\$requestParser \\(EzSystems\\\\EzPlatformRest\\\\RequestParser\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/ImageProcessorTest.php + + - + message: "#^Variable \\$expectedVariations might not be defined\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/ImageProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\MediaProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/MediaProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPostProcessValueHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:testpostProcessFieldSettingsHashLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationListProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationListProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPostProcessFieldValueHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPostProcessFieldValueHashNullValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:testpostProcessFieldSettingsHashLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\RelationProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/RelationProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:fieldSettingsHashes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:testPostProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$inputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:testPreProcessFieldSettingsHash\\(\\) has parameter \\$outputSettings with no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessor\\\\TimeProcessorTest\\:\\:\\$constants has no type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessor/TimeProcessorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessorRegistryTest\\:\\:testGetProcessor\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessorRegistryTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessorRegistryTest\\:\\:testGetProcessorNotFoundException\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessorRegistryTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessorRegistryTest\\:\\:testHasProcessorFailure\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessorRegistryTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessorRegistryTest\\:\\:testRegisterMultipleProcessors\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessorRegistryTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessorRegistryTest\\:\\:testRegisterProcessor\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessorRegistryTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\FieldTypeProcessorRegistryTest\\:\\:testRegisterProcessorsOverwrite\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/FieldTypeProcessorRegistryTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:getParsingDispatcherMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:testParseInvalidContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:testParseMediaTypeCharset\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:testParseMissingContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:testParseMissingFormatHandler\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\DispatcherTest\\:\\:testParseSpecialUrlHeader\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/DispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:getFieldTypeParser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseFieldSettings\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseFieldSettingsWithPreProcessing\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseValidatorConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseValidatorConfigurationWithPreProcessing\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:testParseValueWithPreProcessing\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$contentServiceMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$contentTypeMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$contentTypeServiceMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$fieldTypeMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$fieldTypeProcessorMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$fieldTypeProcessorRegistryMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\FieldTypeParserTest\\:\\:\\$fieldTypeServiceMock has no type specified\\.$#" + count: 1 + path: tests/lib/Input/FieldTypeParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\JsonTest\\:\\:getHandler\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\JsonTest\\:\\:testConvertFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\JsonTest\\:\\:testConvertInvalidJson\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\JsonTest\\:\\:testConvertJson\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/JsonTest.php + + - + message: "#^Argument of an invalid type array\\\\|false supplied for foreach, only iterables are supported\\.$#" + count: 1 + path: tests/lib/Input/Handler/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\XmlTest\\:\\:getXmlFixtures\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\XmlTest\\:\\:testConvertInvalidXml\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\XmlTest\\:\\:testConvertXml\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\XmlTest\\:\\:testConvertXml\\(\\) has parameter \\$expectation with no type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\Handler\\\\XmlTest\\:\\:testConvertXml\\(\\) has parameter \\$xml with no type specified\\.$#" + count: 1 + path: tests/lib/Input/Handler/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:getParserTools\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:testIsEmbeddedObjectReturnsFalse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:testIsEmbeddedObjectReturnsTrue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:testNormalParseBooleanValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:testParseObjectElementEmbedded\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:testParseObjectElementNotEmbedded\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParserToolsTest\\:\\:testUnexpectedValueParseBooleanValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParserToolsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParsingDispatcherTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParsingDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParsingDispatcherTest\\:\\:testParseCharset\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParsingDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParsingDispatcherTest\\:\\:testParseMissingContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParsingDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParsingDispatcherTest\\:\\:testParseStripFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParsingDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Input\\\\ParsingDispatcherTest\\:\\:testParseVersion\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Input/ParsingDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\MessageTest\\:\\:testCreateMessageConstructorBody\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/MessageTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\MessageTest\\:\\:testCreateMessageConstructorHeaders\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/MessageTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\MessageTest\\:\\:testCreateMessageDefaultBody\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/MessageTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\MessageTest\\:\\:testCreateMessageDefaultHeaders\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/MessageTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getContentTypeMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getFieldTypeMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getFieldTypeProcessorMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getFieldTypeProcessorRegistryMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getFieldTypeSerializer\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getFieldTypeServiceMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:getGeneratorMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeFieldDefaultValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeFieldSettings\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeFieldSettingsWithPostProcessing\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeFieldValueWithProcessor\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeValidatorConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:testSerializeValidatorConfigurationWithPostProcessing\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:\\$contentTypeMock has no type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:\\$fieldTypeMock has no type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:\\$fieldTypeProcessorMock has no type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:\\$fieldTypeProcessorRegistryMock has no type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:\\$fieldTypeServiceMock has no type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\FieldTypeSerializerTest\\:\\:\\$generatorMock has no type specified\\.$#" + count: 1 + path: tests/lib/Output/FieldTypeSerializerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:assertSerializationSame\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:assertSerializationSame\\(\\) has parameter \\$functionName with no type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:getFieldTypeHashGenerator\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:getFixtureFile\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:getFixtureFile\\(\\) has parameter \\$functionName with no type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:getGenerator\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:getGeneratorOutput\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:getRelativeClassIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:initializeFieldTypeHashGenerator\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateBoolValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateComplexValueAuthor\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateEmptyStringValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateFloatValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateHashArrayMixedValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateHashArrayValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateIntegerValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateListArrayValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateNull\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateStringValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:testGenerateStringValueWithSpecialChars\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:\\$fieldTypeHashGenerator has no type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:\\$generator has no type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\FieldTypeHashGeneratorBaseTest\\:\\:\\$iniPrecisions has no type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/FieldTypeHashGeneratorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) invoked with 3 parameters, 2 required\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorElementList\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorElementMediaTypeOverwrite\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorMultipleAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorMultipleElements\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorMultipleStackedElements\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorStackedElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorStartEndAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorStartEndValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGeneratorValueList\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testGetMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:testSerializeBool\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Parameter \\#1 \\$boolValue of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:serializeBool\\(\\) expects bool, string given\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\JsonTest\\:\\:\\$generator \\(EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/Generator/JsonTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startValueElement\\(\\) invoked with 3 parameters, 2 required\\.$#" + count: 2 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorElementList\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorElementMediaTypeOverwrite\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorHashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorMultipleAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorStackedElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorStartEndAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorStartEndValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGeneratorValueList\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testGetMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Generator\\\\XmlTest\\:\\:testSerializeBool\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Parameter \\#1 \\$boolValue of method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:serializeBool\\(\\) expects bool, string given\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:\\$generator \\(EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/Generator/XmlTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\:\\:startList\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testEmptyDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidAttributeDocumentStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidAttributeListStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidAttributeOuterStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidDocumentEnd\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidDocumentNameEnd\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidDocumentStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidElementEnd\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidListDocumentStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidListListStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidListOuterStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidOuterElementStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidValueElementDocumentStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testInvalidValueElementOuterStart\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testNonEmptyDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\GeneratorTest\\:\\:testValidDocumentStartAfterReset\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/GeneratorTest.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$responseMock\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Access to an undefined property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$routerMockCallIndex\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\\\|false\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:addRouteExpectation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:addRouteExpectation\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:addTemplatedRouteExpectation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:addTemplatedRouteExpectation\\(\\) has parameter \\$arguments with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) has parameter \\$matcher with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXPath\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:getRequestParser\\(\\) should return EzSystems\\\\EzPlatformRest\\\\RequestParser&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject but returns EzSystems\\\\EzPlatformRest\\\\RequestParser\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:getVisitor\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:getVisitorMock\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject but returns EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:resetRouterMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Parameter \\#1 \\$document of class DOMXPath constructor expects DOMDocument, DOMDocument\\|null given\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$generator \\(EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator\\\\Xml\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$requestParser \\(EzSystems\\\\EzPlatformRest\\\\RequestParser\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$routerMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Routing\\\\RouterInterface\\) does not accept null\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$routerMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Routing\\\\RouterInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$templatedRouterMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Component\\\\Routing\\\\RouterInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:\\$visitorMock \\(EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorBaseTest.php + + - + message: "#^Call to method addVisitor\\(\\) on an unknown class EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher\\.$#" + count: 4 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Call to method visit\\(\\) on an unknown class EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher\\.$#" + count: 6 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:getOutputGeneratorMock\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:getOutputVisitorMock\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Visitor\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:getValueObjectDispatcher\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:getValueObjectDispatcher\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher but returns EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:testVisitValueObject\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:testVisitValueObjectInvalidType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:testVisitValueObjectNoMatch\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:testVisitValueObjectParentMatch\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:testVisitValueObjectSecondRuleParentMatch\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Parameter \\#1 \\$outputGenerator of method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\:\\:setOutputGenerator\\(\\) expects EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator, EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject given\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Parameter \\#1 \\$outputVisitor of method EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher\\:\\:setOutputVisitor\\(\\) expects EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor, EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Visitor&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject given\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:\\$outputGeneratorMock \\(EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) does not accept EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:\\$outputGeneratorMock \\(EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:\\$outputGeneratorMock has unknown class EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator as its type\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:\\$outputVisitorMock \\(EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Visitor&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) does not accept EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:\\$outputVisitorMock \\(EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Visitor&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorDispatcherTest\\:\\:\\$outputVisitorMock has unknown class EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Visitor as its type\\.$#" + count: 1 + path: tests/lib/Output/ValueObjectVisitorDispatcherTest.php + + - + message: "#^Call to method expects\\(\\) on an unknown class EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:getGeneratorMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:getValueObjectDispatcherMock\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:getValueObjectDispatcherMock\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject but returns EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:getVisitorMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testSetFilteredHeaders\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testSetHeaderResetAfterVisit\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testSetHeaders\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testSetHeadersNoOverwrite\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testSetStatusCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testSetStatusCodeNoOverride\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testVisitDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testVisitEmptyDocument\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\VisitorTest\\:\\:testVisitValueObject\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^PHPDoc tag @var for variable \\$generatorMock contains unknown class EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Parameter \\#1 \\$generator of class EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor constructor expects EzSystems\\\\EzPlatformRest\\\\Output\\\\Generator, EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\Generator&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject given\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Parameter \\#2 \\$valueObjectVisitorDispatcher of class EzSystems\\\\EzPlatformRest\\\\Output\\\\Visitor constructor expects EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitorDispatcher, EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\Common\\\\Output\\\\ValueObjectVisitorDispatcher&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject given\\.$#" + count: 1 + path: tests/lib/Output/VisitorTest.php + + - + message: "#^Call to method setRequestParser\\(\\) on an unknown class EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Base\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\BaseTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\BaseTest\\:\\:getParser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\BaseTest\\:\\:internalGetParser\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Base\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\BaseTest\\:\\:\\$parserTools \\(EzSystems\\\\EzPlatformRest\\\\Input\\\\ParserTools\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\BaseTest\\:\\:\\$parsingDispatcherMock \\(EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\BaseTest\\:\\:\\$requestParserMock \\(EzSystems\\\\EzPlatformRest\\\\RequestParser&PHPUnit\\\\Framework\\\\MockObject\\\\MockObject\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/BaseTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnInvalidContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnInvalidFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnInvalidFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnInvalidSection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnInvalidUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnMissingContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnMissingFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnMissingFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnMissingLocationCreate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentCreateTest\\:\\:testParseExceptionOnMissingMainLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentObjectStatesTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentObjectStatesTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentObjectStatesTest\\:\\:testParseExceptionOnMissingHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:getInputArray\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnInvalidDescriptions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnInvalidFieldDefinition\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnInvalidFieldDefinitions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnInvalidUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnMissingFieldDefinitions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeCreateTest\\:\\:testParseExceptionOnMissingMainLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeGroupInputTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeGroupInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeGroupInputTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeGroupInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeGroupInputTest\\:\\:testParseExceptionOnInvalidUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeGroupInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdateTest\\:\\:getInputArray\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdateTest\\:\\:testParseExceptionOnInvalidDescriptions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentTypeUpdateTest\\:\\:testParseExceptionOnInvalidUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentTypeUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:getValidInputData\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:providerForTestParseFailureInvalidDate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:providerForTestParseFailureInvalidHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParseFailureInvalidDate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParseFailureInvalidDate\\(\\) has parameter \\$element with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParseFailureInvalidDate\\(\\) has parameter \\$exceptionMessage with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParseFailureInvalidHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParseFailureInvalidHref\\(\\) has parameter \\$element with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParseFailureInvalidHref\\(\\) has parameter \\$exceptionMessage with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ContentUpdateTest\\:\\:testParserResultOwner\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ContentUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\DateMetadataTest\\:\\:testParseProvider\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/DateMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalAndTest\\:\\:testParseLogicalAnd\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/LogicalAndTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalAndTest\\:\\:testThrowsExceptionOnInvalidAndStatement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/LogicalAndTest.php + + - + message: "#^Method PHPUnit\\\\Framework\\\\TestCase\\:\\:createMock\\(\\) invoked with 5 parameters, 1 required\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/LogicalAndTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOrTest\\:\\:testParseLogicalOr\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/LogicalOrTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LogicalOrTest\\:\\:testThrowsExceptionOnInvalidAndStatement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/LogicalOrTest.php + + - + message: "#^Method PHPUnit\\\\Framework\\\\TestCase\\:\\:createMock\\(\\) invoked with 5 parameters, 1 required\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/LogicalOrTest.php + + - + message: "#^Call to an undefined method eZ\\\\Publish\\\\API\\\\Repository\\\\LocationService\\:\\:method\\(\\)\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/SiblingTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParse\\(\\) has parameter \\$data with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParse\\(\\) has parameter \\$expected with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParseExceptionOnInvalidCriterionFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParseExceptionOnInvalidTargetFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParseExceptionOnInvalidValueFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParseExceptionOnWrongValueType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\UserMetadataTest\\:\\:testParseProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Criterion/UserMetadataTest.php + + - + message: "#^Class EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Criterion\\\\LocationId does not have a constructor and must be instantiated without any parameters\\.$#" + count: 4 + path: tests/lib/Server/Input/Parser/FacetBuilder/FacetBuilderParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreateTest\\:\\:getInputArray\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreateTest\\:\\:testParseExceptionOnInvalidDescriptions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreateTest\\:\\:testParseExceptionOnMissingFieldType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionCreateTest\\:\\:testParseExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdateTest\\:\\:getInputArray\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdateTest\\:\\:testParseExceptionOnInvalidDescriptions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\FieldDefinitionUpdateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/FieldDefinitionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\PathStringRouteBasedLimitationParserTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Limitation/PathStringRouteBasedLimitationParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\PathStringRouteBasedLimitationParserTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Limitation/PathStringRouteBasedLimitationParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\RouteBasedLimitationParserTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Limitation/RouteBasedLimitationParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\Limitation\\\\RouteBasedLimitationParserTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/Limitation/RouteBasedLimitationParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationCreateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationCreateTest\\:\\:testParseExceptionOnMissingHrefAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationCreateTest\\:\\:testParseExceptionOnMissingParentLocation\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationCreateTest\\:\\:testParseExceptionOnMissingSortField\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationCreateTest\\:\\:testParseExceptionOnMissingSortOrder\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationUpdateTest\\:\\:testParseWithMissingSortField\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\LocationUpdateTest\\:\\:testParseWithMissingSortOrder\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/LocationUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreateTest\\:\\:testParseExceptionOnMissingDefaultLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreateTest\\:\\:testParseExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreateTest\\:\\:testParseExceptionOnMissingNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateCreateTest\\:\\:testParseExceptionOnMissingPriority\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupCreateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupCreateTest\\:\\:testParseExceptionOnMissingDefaultLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupCreateTest\\:\\:testParseExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupCreateTest\\:\\:testParseExceptionOnMissingNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateGroupUpdateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ObjectStateUpdateTest\\:\\:testParseExceptionOnInvalidNames\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ObjectStateUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyCreateTest\\:\\:testParseExceptionOnMissingFunction\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyCreateTest\\:\\:testParseExceptionOnMissingLimitationIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyCreateTest\\:\\:testParseExceptionOnMissingLimitationValues\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyCreateTest\\:\\:testParseExceptionOnMissingModule\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyUpdateTest\\:\\:testParseExceptionOnMissingLimitationIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\PolicyUpdateTest\\:\\:testParseExceptionOnMissingLimitationValues\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/PolicyUpdateTest.php + + - + message: "#^Call to an undefined method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:expects\\(\\)\\.$#" + count: 6 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:internalGetParser\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Base\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:internalGetParser\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\Base but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ContentQuery\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:testDispatchMoreThanOneFilter\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:testDispatchMoreThanOneQueryItem\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:testDispatchOneFilter\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:testDispatchOneQueryItem\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\QueryParserTest\\:\\:testParseEmptyQuery\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/QueryParserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RelationCreateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RelationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RelationCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RelationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RelationCreateTest\\:\\:testParseExceptionOnMissingDestination\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RelationCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RelationCreateTest\\:\\:testParseExceptionOnMissingDestinationHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RelationCreateTest.php + + - + message: "#^Call to an undefined method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:expects\\(\\)\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleAssignInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInputTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleAssignInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInputTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleAssignInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInputTest\\:\\:testParseExceptionOnInvalidRole\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleAssignInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInputTest\\:\\:testParseExceptionOnMissingLimitationIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleAssignInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RoleAssignInputTest\\:\\:testParseExceptionOnMissingRole\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleAssignInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\RoleInputTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/RoleInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SectionInputTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SectionInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SectionInputTest\\:\\:testParseExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SectionInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SectionInputTest\\:\\:testParseExceptionOnMissingName\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SectionInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SessionInputTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SessionInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SessionInputTest\\:\\:testParseExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SessionInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SessionInputTest\\:\\:testParseExceptionOnMissingName\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SessionInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\DataKeyValueObjectClassTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/DataKeyValueObjectClassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\DataKeyValueObjectClassTest\\:\\:testParseExceptionOnInvalidDirectionFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/DataKeyValueObjectClassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\DataKeyValueObjectClassTest\\:\\:testParseExceptionOnMissingSortClause\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/DataKeyValueObjectClassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\DataKeyValueObjectClassTest\\:\\:testParseExceptionOnNonexistingValueObjectClass\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/DataKeyValueObjectClassTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\FieldTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/FieldTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\FieldTest\\:\\:testParseExceptionOnInvalidDirectionFormat\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/FieldTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\SortClause\\\\FieldTest\\:\\:testParseExceptionOnMissingSortClause\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/SortClause/FieldTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/URLWildcardCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreateTest\\:\\:testParseExceptionOnMissingDestinationUrl\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/URLWildcardCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreateTest\\:\\:testParseExceptionOnMissingForward\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/URLWildcardCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\URLWildcardCreateTest\\:\\:testParseExceptionOnMissingSourceUrl\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/URLWildcardCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnInvalidContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnInvalidFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnInvalidFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnInvalidSection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnMissingEmail\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnMissingFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnMissingFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnMissingLogin\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnMissingMainLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserCreateTest\\:\\:testParseExceptionOnMissingPassword\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnInvalidContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnInvalidFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnInvalidFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnInvalidSection\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnMissingFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnMissingFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupCreateTest\\:\\:testParseExceptionOnMissingMainLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupCreateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdateTest\\:\\:testParseExceptionOnInvalidFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdateTest\\:\\:testParseExceptionOnMissingFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdateTest\\:\\:testParseExceptionOnMissingFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserGroupUpdateTest\\:\\:testParseExceptionOnMissingSectionHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserGroupUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserUpdateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserUpdateTest\\:\\:testParseExceptionOnInvalidFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserUpdateTest\\:\\:testParseExceptionOnMissingFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserUpdateTest\\:\\:testParseExceptionOnMissingFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\UserUpdateTest\\:\\:testParseExceptionOnMissingSectionHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/UserUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\VersionUpdateTest\\:\\:getParseHrefExpectationsMap\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/VersionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\VersionUpdateTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/VersionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\VersionUpdateTest\\:\\:testParseExceptionOnInvalidFields\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/VersionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\VersionUpdateTest\\:\\:testParseExceptionOnMissingFieldDefinitionIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/VersionUpdateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\VersionUpdateTest\\:\\:testParseExceptionOnMissingFieldValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/VersionUpdateTest.php + + - + message: "#^Call to an undefined method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:expects\\(\\)\\.$#" + count: 2 + path: tests/lib/Server/Input/Parser/ViewInputOneDotOneTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOneTest\\:\\:internalGetParser\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ViewInput but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOne\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputOneDotOneTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOneTest\\:\\:testParseContentQuery\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputOneDotOneTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOneTest\\:\\:testParseLocationQuery\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputOneDotOneTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOneTest\\:\\:testThrowsExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputOneDotOneTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputOneDotOneTest\\:\\:testThrowsExceptionOnMissingQuery\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputOneDotOneTest.php + + - + message: "#^Call to an undefined method EzSystems\\\\EzPlatformRest\\\\Input\\\\ParsingDispatcher\\:\\:expects\\(\\)\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputTest\\:\\:testParse\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputTest\\:\\:testThrowsExceptionOnMissingIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Input\\\\Parser\\\\ViewInputTest\\:\\:testThrowsExceptionOnMissingQuery\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Input/Parser/ViewInputTest.php + + - + message: "#^Cannot access property \\$length on DOMNodeList\\\\|false\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/BookmarkListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:testVisit\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:testVisitCacheTTLCacheDisabled\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:testVisitLocationCache\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:testVisitNoRequest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:testVisitNoUserHash\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:testVisitViewCacheDisabled\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:visit\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:visit\\(\\) has parameter \\$value with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:\\$defaultOptions has no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:\\$options has no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CachedValueTest\\:\\:\\$request \\(Symfony\\\\Component\\\\HttpFoundation\\\\Request\\) does not accept null\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CachedValueTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ConflictTest\\:\\:testVisit\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ConflictTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentFieldValidationExceptionTest\\:\\:testResultContainsErrorDescription\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentFieldValidationExceptionTest\\:\\:testResultContainsErrorDetails\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentFieldValidationExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 3 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentListTest\\:\\:testContentListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentListTest\\:\\:testResultContainsContentListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentListTest\\:\\:testResultContainsContentListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStatesTest\\:\\:internalGetVisitor\\(\\) has invalid return type EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStates\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStatesTest\\:\\:internalGetVisitor\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStates but returns EzSystems\\\\EzPlatformRest\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStates\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStatesTest\\:\\:testResultContainsContentObjectStatesAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentObjectStatesTest\\:\\:testResultContainsContentObjectStatesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentObjectStatesTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupListTest\\:\\:testContentTypeGroupListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupListTest\\:\\:testResultContainsContentTypeGroupListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupListTest\\:\\:testResultContainsContentTypeGroupListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testContentTypeGroupRefListHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testContentTypeGroupRefListMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testFirstContentTypeGroupRefHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testFirstContentTypeGroupRefMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testFirstContentTypeGroupRefUnlinkHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testFirstContentTypeGroupRefUnlinkMethodCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testSecondContentTypeGroupRefHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testSecondContentTypeGroupRefMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testSecondContentTypeGroupRefUnlinkHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupRefListTest\\:\\:testSecondContentTypeGroupRefUnlinkMethodCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 12 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsContentTypeGroupAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsContentTypeGroupElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsContentTypesAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsContentTypesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsCreatedValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsCreatorAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsCreatorElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsIdentifierValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsModifiedValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsModifierAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeGroupTest\\:\\:testResultContainsModifierElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeInfoListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeInfoListTest\\:\\:testContentTypeInfoListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeInfoListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeInfoListTest\\:\\:testResultContainsContentTypeInfoListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeInfoListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeInfoListTest\\:\\:testResultContainsContentTypeInfoListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeInfoListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeListTest\\:\\:testContentTypeListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeListTest\\:\\:testResultContainsContentTypeListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ContentTypeListTest\\:\\:testResultContainsContentTypeListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ContentTypeListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testCountryListAlpha2\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testCountryListAlpha3\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testCountryListIDC\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testCountryListId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testCountryListMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testCountryListName\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\CountryListTest\\:\\:testVisit\\(\\) should return string but returns DOMDocument\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/CountryListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\DeletedUserSessionTest\\:\\:testVisit\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/DeletedUserSessionTest.php + + - + message: "#^Call to an undefined method Symfony\\\\Contracts\\\\Translation\\\\TranslatorInterface\\:\\:method\\(\\)\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Cannot access property \\$textContent on DOMNode\\|null\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Cannot call method item\\(\\) on DOMNodeList\\\\|false\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:testResultContainsErrorCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:testResultContainsErrorDescription\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:testResultContainsErrorMessage\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:testResultContainsExceptionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:testResultContainsPreviousError\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:testResultContainsPreviousError\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ExceptionTest\\:\\:\\$translatorMock \\(PHPUnit\\\\Framework\\\\MockObject\\\\MockObject&Symfony\\\\Contracts\\\\Translation\\\\TranslatorInterface\\) in isset\\(\\) is not nullable\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ExceptionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\FieldDefinitionListTest\\:\\:getBasicFieldDefinitionList\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/FieldDefinitionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\FieldDefinitionListTest\\:\\:provideXpathAssertions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/FieldDefinitionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\FieldDefinitionListTest\\:\\:testGeneratedXml\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/FieldDefinitionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testContentImageVariationContentTagExists\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testContentImageVariationTagHrefAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testContentImageVariationTagMediaTypeAttribute\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testContentTypeTagExists\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testContentTypeTagValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testFileSizeTagExists\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testFileSizeTagValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testHeightTagExists\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testHeightTagValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testUriTagExists\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testUriTagValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testVisit\\(\\) should return string but returns DOMDocument\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testWidthTagExists\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ImageVariationTest\\:\\:testWidthTagValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ImageVariationTest.php + + - + message: "#^Static method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/JWTTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/LocationListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\LocationListTest\\:\\:testResultContainsLocationListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/LocationListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\LocationListTest\\:\\:testResultContainsLocationListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/LocationListTest.php + + - + message: "#^Access to an undefined property Ibexa\\\\Tests\\\\Rest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\LocationTest\\:\\:\\$permissionResolverMock\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/LocationTest.php + + - + message: "#^Method Ibexa\\\\Tests\\\\Rest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\LocationTest\\:\\:getDataForTestVisitLocationAttributesResolvesMainLocation\\(\\) return type has no value type specified in iterable type iterable\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/LocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\NoContentTest\\:\\:testVisit\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/NoContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupListTest\\:\\:testObjectStateGroupListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupListTest\\:\\:testResultContainsObjectStateGroupListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupListTest\\:\\:testResultContainsObjectStateGroupListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 8 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsDefaultLanguageCodeValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsDescriptionsElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsIdentifierValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsLanguageCodesValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsNamesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsObjectStateGroupAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateGroupTest\\:\\:testResultContainsObjectStateGroupElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateListTest\\:\\:testObjectStateListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateListTest\\:\\:testResultContainsObjectStateListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ObjectStateListTest\\:\\:testResultContainsObjectStateListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ObjectStateListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\OptionsTest\\:\\:internalGetVisitor\\(\\) should return EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\NoContent but returns EzSystems\\\\EzPlatformRest\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\Options\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/OptionsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\OptionsTest\\:\\:testVisit\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/OptionsTest.php + + - + message: "#^Method PHPUnit\\\\Framework\\\\MockObject\\\\Builder\\\\InvocationMocker\\\\:\\:willReturnMap\\(\\) invoked with 2 parameters, 1 required\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/OptionsTest.php + + - + message: "#^Parameter \\#1 \\$valueMap of method PHPUnit\\\\Framework\\\\MockObject\\\\Builder\\\\InvocationMocker\\\\:\\:willReturnMap\\(\\) expects array\\\\>, array\\ given\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/OptionsTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PermanentRedirectTest\\:\\:testVisit\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PermanentRedirectTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyListTest\\:\\:testPolicyListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyListTest\\:\\:testResultContainsPolicyListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyListTest\\:\\:testResultContainsPolicyListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyListTest.php + + - + message: "#^Parameter \\#2 \\$path of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Values\\\\PolicyList constructor expects string, int given\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 7 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsFunctionValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsLimitationsAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsLimitationsElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsModuleValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsPolicyAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\PolicyTest\\:\\:testResultContainsPolicyElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/PolicyTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/RelationListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RelationListTest\\:\\:testRelationListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RelationListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RelationListTest\\:\\:testResultContainsRelationsAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RelationListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RelationListTest\\:\\:testResultContainsRelationsElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RelationListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\ResourceCreatedTest\\:\\:testVisit\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/ResourceCreatedTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:getBasicRestContent\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testAlwaysAvailableCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentIdCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentMediaTypeWithVersionCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentMediaTypeWithoutVersionCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentRemoteIdCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentTypeHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testContentTypeMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testCurrentVersionHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testCurrentVersionMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testCurrentVersionNoCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testEmbeddedCurrentVersionHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testEmbeddedCurrentVersionMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testIsHiddenCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testLastModificationDateCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testLocationsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testLocationsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testMainLanguageCodeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testMainLocationHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testMainLocationMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testNameCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testOwnerHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testOwnerMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testSectionHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testSectionMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testStatusCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testTranslatedNameCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testVersionsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTest\\:\\:testVersionsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:getBasicContentType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testContentTypeHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testContentTypeMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testCreationDate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testCreatorHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testCreatorMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testDefaultAlwaysAvailable\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testDefaultSortField\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testDefaultSortOrder\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testDraftHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testDraftType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testFirstDescription\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testFirstName\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testGroupsHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testGroupsType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testIsContainer\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testMainLanguageCode\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testModificationDate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testModifierHref\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testModifierMediaType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testNameSchema\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testRemoteId\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testSecondDescription\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testSecondName\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testStatus\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestContentTypeTest\\:\\:testUrlAliasSchema\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestContentTypeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestExecutedViewTest\\:\\:provideXpathAssertions\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestExecutedViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestExecutedViewTest\\:\\:testGeneratedXml\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestExecutedViewTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinitionTest\\:\\:getXpathAssertions\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestFieldDefinitionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinitionTest\\:\\:prepareXPathAssertions\\(\\) has parameter \\$xpathAssertions with no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestFieldDefinitionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinitionTest\\:\\:prepareXPathAssertions\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestFieldDefinitionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinitionTest\\:\\:provideXpathAssertions\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestFieldDefinitionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinitionTest\\:\\:provideXpathAssertionsPath\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestFieldDefinitionTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestFieldDefinitionTest\\:\\:\\$fieldTypeSerializerMock has no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestFieldDefinitionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 7 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsChildrenAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsLocationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsParentLocationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsParentLocationElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsPathStringValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationRootNodeTest\\:\\:testResultContainsUrlAliasesTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationRootNodeTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 22 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsChildCountValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsChildrenAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsChildrenElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsContentAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsContentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsContentInfoAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsContentInfoElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsDepthValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsExplicitlyHiddenValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsHiddenValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsInvisibleValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsLocationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsLocationElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsParentLocationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsParentLocationElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsPathStringValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsPriorityValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsRemoteIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsSortFieldValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsSortOrderValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsUrlAliasesTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestLocationTest\\:\\:testResultContainsUrlAliasesTagAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestLocationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 11 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsDefaultLanguageCodeValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsDescriptionsElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsIdentifierValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsLanguageCodesValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsNamesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsObjectStateAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsObjectStateElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsObjectStateGroupAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsObjectStateGroupElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestObjectStateTest\\:\\:testResultContainsPriorityValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestObjectStateTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 6 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelationTest\\:\\:testResultContainsDestinationContentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelationTest\\:\\:testResultContainsRelationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelationTest\\:\\:testResultContainsRelationElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelationTest\\:\\:testResultContainsRelationTypeElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelationTest\\:\\:testResultContainsSourceContentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestRelationTest\\:\\:testResultContainsSourceFieldDefinitionIdentifierElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestRelationTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 18 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsChildCountValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsContentAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsContentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsContentInfoAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsContentInfoElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsDepthValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsHiddenValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsInvisibleValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsParentLocationAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsParentLocationElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsPathStringValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsPriorityValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsRemoteIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsSortFieldValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsSortOrderValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsTrashItemAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestTrashItemTest\\:\\:testResultContainsTrashItemElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestTrashItemTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 4 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupRoleAssignmentTest\\:\\:testResultContainsRoleAssignmentAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupRoleAssignmentTest\\:\\:testResultContainsRoleAssignmentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupRoleAssignmentTest\\:\\:testResultContainsRoleAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupRoleAssignmentTest\\:\\:testResultContainsRoleElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:getBasicRestUserGroup\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testAlwaysAvailableCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testLastModificationDateCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testLocationsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testLocationsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testMainLanguageCodeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testMainLocationHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testMainLocationMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testNameCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testOwnerHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testOwnerMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testParentUserGroupHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testParentUserGroupMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testRolesHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testRolesMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testSectionHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testSectionMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testSubgroupsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testSubgroupsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUserGroupHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUserGroupIdCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUserGroupMediaTypeWithoutVersionCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUserGroupRemoteIdCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUserGroupTypeHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUserGroupTypeMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUsersHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testUsersMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testVersionsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserGroupTest\\:\\:testVersionsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserGroupTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 4 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserRoleAssignmentTest\\:\\:testResultContainsRoleAssignmentAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserRoleAssignmentTest\\:\\:testResultContainsRoleAssignmentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserRoleAssignmentTest\\:\\:testResultContainsRoleAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserRoleAssignmentTest\\:\\:testResultContainsRoleElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserRoleAssignmentTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:getBasicRestUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testAlwaysAvailableCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testLastModificationDateCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testLocationsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testLocationsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testMainLanguageCodeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testMainLocationHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testMainLocationMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testNameCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testOwnerHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testOwnerMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testRolesHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testRolesMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testSectionHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testSectionMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserGroupsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserGroupsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserIdCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserMediaTypeWithoutVersionCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserRemoteIdCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserTypeHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testUserTypeMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testVersionsHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RestUserTest\\:\\:testVersionsMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RestUserTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 3 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleAssignmentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleAssignmentListTest\\:\\:testResultContainsGroupRoleAssignmentListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleAssignmentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleAssignmentListTest\\:\\:testResultContainsRoleListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleAssignmentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleAssignmentListTest\\:\\:testResultContainsUserRoleAssignmentListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleAssignmentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleAssignmentListTest\\:\\:testRoleAssignmentListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleAssignmentListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleListTest\\:\\:testResultContainsRoleListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleListTest\\:\\:testResultContainsRoleListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleListTest\\:\\:testRoleListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 5 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsDescriptionsElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsIdentifierValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsMainLanguageCodeValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsNamesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsPoliciesAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsPoliciesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsRoleAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RoleTest\\:\\:testResultContainsRoleElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Unreachable statement \\- code above always terminates\\.$#" + count: 3 + path: tests/lib/Server/Output/ValueObjectVisitor/RoleTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 6 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:getRootResourceBuilder\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRootAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRootElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRootElement\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRouterTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRouterTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRouterWithAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsRouterWithAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsTemplateRouterTag\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsTemplateRouterTag\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsTemplateRouterWithAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\RootTest\\:\\:testResultContainsTemplateRouterWithAttributes\\(\\) has parameter \\$result with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/RootTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionListTest\\:\\:testResultContainsSectionListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionListTest\\:\\:testResultContainsSectionListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionListTest\\:\\:testSectionListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 5 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionTest\\:\\:testResultContainsIdentifierValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionTest\\:\\:testResultContainsNameValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionTest\\:\\:testResultContainsSectionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionTest\\:\\:testResultContainsSectionElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\SectionTest\\:\\:testResultContainsSectionIdValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/SectionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\TemporaryRedirectTest\\:\\:testVisit\\(\\) should return string but return statement is missing\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/TemporaryRedirectTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\TrashTest\\:\\:testResultContainsTrashAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\TrashTest\\:\\:testResultContainsTrashElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\TrashTest\\:\\:testTrashVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/TrashTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasListTest\\:\\:testResultContainsUrlAliasListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasListTest\\:\\:testResultContainsUrlAliasListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasListTest\\:\\:testURLAliasListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasRefListTest\\:\\:testUrlAliasHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasRefListTest\\:\\:testUrlAliasMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasRefListTest\\:\\:testUrlAliasRefListHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasRefListTest\\:\\:testUrlAliasRefListMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 9 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsAlwaysAvailableValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsCustomValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsForwardValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsIsHistoryValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsLanguageCodesValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsPathValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsUrlAliasAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsUrlAliasElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLAliasTest\\:\\:testResultContainsUrlValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLAliasTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardListTest\\:\\:testResultContainsUrlWildcardListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardListTest\\:\\:testResultContainsUrlWildcardListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardListTest\\:\\:testURLWildcardListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 5 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardTest\\:\\:testResultContainsDestinationUrlValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardTest\\:\\:testResultContainsForwardValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardTest\\:\\:testResultContainsSourceUrlValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardTest\\:\\:testResultContainsUrlWildcardAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\URLWildcardTest\\:\\:testResultContainsUrlWildcardElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/URLWildcardTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupListTest\\:\\:testResultContainsUserGroupListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupListTest\\:\\:testResultContainsUserGroupListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupListTest\\:\\:testUserGroupListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testFirstUserGroupHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testFirstUserGroupMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testFirstUserGroupUnassignHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testFirstUserGroupUnassignMethodCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testSecondUserGroupHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testSecondUserGroupMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testSecondUserGroupUnassignHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testSecondUserGroupUnassignMethodCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testUserGroupRefListHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserGroupRefListTest\\:\\:testUserGroupRefListMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserGroupRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/UserListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserListTest\\:\\:testResultContainsUserListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserListTest\\:\\:testResultContainsUserListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserListTest\\:\\:testUserListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserRefListTest\\:\\:testUserHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserRefListTest\\:\\:testUserMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserRefListTest\\:\\:testUserRefListHrefCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserRefListTest\\:\\:testUserRefListMediaTypeCorrect\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserRefListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 7 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:getUserMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsCsrfTokenValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsIdentifierValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsNameValueElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsSessionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsSessionElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsUserAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\UserSessionTest\\:\\:testResultContainsUserElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/UserSessionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 10 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testResultContainsVersionInfoChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoContentElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoCreationDateElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoIdElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoInitialLanguageCodeElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoLanguageCodesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoModificationDateElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoNamesElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoStatusElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionInfoTest\\:\\:testVersionInfoVersionNoElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionInfoTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 2 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionListTest\\:\\:testResultContainsVersionListAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionListTest\\:\\:testResultContainsVersionListElement\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionListTest\\:\\:testVersionListVisitsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionListTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Output\\\\ValueObjectVisitorBaseTest\\:\\:assertXMLTag\\(\\) invoked with 4 parameters, 2\\-3 required\\.$#" + count: 3 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionTest\\:\\:testResultContainsFieldsChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionTest\\:\\:testResultContainsVersionChildren\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionTest\\:\\:testResultVersionAttributes\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php + + - + message: "#^Property EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Output\\\\ValueObjectVisitor\\\\VersionTest\\:\\:\\$fieldTypeSerializerMock has no type specified\\.$#" + count: 1 + path: tests/lib/Server/Output/ValueObjectVisitor/VersionTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\CsrfTokenManagerTest\\:\\:createCsrfTokenManager\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/CsrfTokenManagerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\CsrfTokenManagerTest\\:\\:createCsrfTokenManager\\(\\) has parameter \\$https with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/CsrfTokenManagerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\CsrfTokenManagerTest\\:\\:testHasTokenForHttp\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/CsrfTokenManagerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\CsrfTokenManagerTest\\:\\:testHasTokenForHttps\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/CsrfTokenManagerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestLogoutHandlerTest\\:\\:testLogoutNotRest\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestLogoutHandlerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestLogoutHandlerTest\\:\\:testLogoutWithSiteaccessSessionSettings\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestLogoutHandlerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestLogoutHandlerTest\\:\\:testLogoutWithoutSiteaccessSessionSettings\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestLogoutHandlerTest.php + + - + message: "#^Parameter \\#1 \\$configResolver of class EzSystems\\\\EzPlatformRest\\\\Server\\\\Security\\\\RestLogoutHandler constructor expects eZ\\\\Publish\\\\Core\\\\MVC\\\\ConfigResolverInterface, PHPUnit\\\\Framework\\\\MockObject\\\\MockObject given\\.$#" + count: 3 + path: tests/lib/Server/Security/RestLogoutHandlerTest.php + + - + message: "#^Parameter \\#1 \\$session of method Symfony\\\\Component\\\\HttpFoundation\\\\Request\\:\\:setSession\\(\\) expects Symfony\\\\Component\\\\HttpFoundation\\\\Session\\\\SessionInterface, PHPUnit\\\\Framework\\\\MockObject\\\\MockObject given\\.$#" + count: 2 + path: tests/lib/Server/Security/RestLogoutHandlerTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:createUser\\(\\) has parameter \\$userId with no type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:getTokenInterfaceMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:getUsernamePasswordTokenMock\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticate\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticateAlreadyHaveSessionToken\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticateInvalidUser\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticateNoTokenFound\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticatePreviousTokenNotUsernamePassword\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticatePreviousUserNonEz\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticatePreviouslyAnonymous\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testAuthenticateUserConflict\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\Server\\\\Security\\\\RestSessionBasedAuthenticatorTest\\:\\:testLogout\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Parameter \\#1 \\$user of class Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\UsernamePasswordToken constructor expects Symfony\\\\Component\\\\Security\\\\Core\\\\User\\\\UserInterface, string given\\.$#" + count: 7 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Parameter \\#3 \\$roles of class Symfony\\\\Component\\\\Security\\\\Core\\\\Authentication\\\\Token\\\\UsernamePasswordToken constructor expects array\\, string given\\.$#" + count: 7 + path: tests/lib/Server/Security/RestSessionBasedAuthenticatorTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:getParseValues\\(\\) return type has no value type specified in iterable type array\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateMissingValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateSuperfluousValue\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateUnknownUrlType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateUrl\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateUrl\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateUrl\\(\\) has parameter \\$url with no type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testGenerateUrl\\(\\) has parameter \\$values with no type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testParseInvalidPattern\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testParseUnknownUrlType\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testParseUrl\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testParseUrl\\(\\) has parameter \\$type with no type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testParseUrl\\(\\) has parameter \\$url with no type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testParseUrl\\(\\) has parameter \\$values with no type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testPatternDoesNotMatch\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php + + - + message: "#^Method EzSystems\\\\EzPlatformRest\\\\Tests\\\\UrlHandler\\\\PatternTest\\:\\:testPatternDoesNotMatchTrailing\\(\\) has no return type specified\\.$#" + count: 1 + path: tests/lib/UrlHandler/PatternTest.php diff --git a/phpstan-baseline.neon.php b/phpstan-baseline.neon.php new file mode 100644 index 0000000..d78e8e4 --- /dev/null +++ b/phpstan-baseline.neon.php @@ -0,0 +1,19 @@ +