diff --git a/.gitattributes b/.gitattributes index 7081c2d7..ac99a548 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,6 +12,6 @@ /composer-require-checker.json export-ignore /composer.lock export-ignore /Makefile export-ignore -/psalm-baseline.xml export-ignore -/psalm.xml export-ignore +/phpstan-baseline.neon export-ignore +/phpstan.neon export-ignore /rector.php export-ignore diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 67087381..acfd6346 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# CONTRIBUTING +# Contributing We use [GitHub Actions](https://github.com/features/actions) as a continuous integration system. @@ -72,7 +72,7 @@ to run a security analysis. ## Static Code Analysis -We use [`vimeo/psalm`](https://github.com/vimeo/psalm) to statically analyze the code. +We use [`phpstan/phpstan`](https://github.com/phpstan/phpstan) to statically analyze the code. Run @@ -82,7 +82,7 @@ make static-code-analysis to run a static code analysis. -We also use the baseline feature of [`vimeo/psalm`](https://psalm.dev/docs/running_psalm/dealing_with_code_issues/#using-a-baseline-file). +We also use the baseline feature of [`phpstan/phpstan`](https://phpstan.org/user-guide/baseline). Run @@ -90,7 +90,7 @@ Run make static-code-analysis-baseline ``` -to regenerate the baseline in [`../psalm-baseline.xml`](../psalm-baseline.xml). +to regenerate the baseline in [`../phpstan-baseline.neon`](../phpstan-baseline.neon). :exclamation: Ideally, the baseline should shrink over time. diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index fdebab6f..25218a77 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -14,7 +14,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "composer" schedule: - interval: "daily" + interval: "weekly" versioning-strategy: "increase" - commit-message: @@ -26,4 +26,4 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index a612d6b9..f382b2e1 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -440,8 +440,8 @@ jobs: with: dependencies: "${{ matrix.dependencies }}" - - name: "Run vimeo/psalm" - run: "vendor/bin/psalm --config=psalm.xml --output-format=github --shepherd --show-info=false --stats --threads=4" + - name: "Run phpstan/phpstan" + run: "vendor/bin/phpstan --ansi --configuration=phpstan.neon --memory-limit=-1" tests: name: "Tests" diff --git a/Makefile b/Makefile index b9036b53..d30eda3c 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ it: refactoring coding-standards security-analysis static-code-analysis tests ## Runs the refactoring, coding-standards, security-analysis, static-code-analysis, and tests targets .PHONY: code-coverage -code-coverage: vendor ## Collects coverage from running unit tests with phpunit/phpunit - composer config platform.php --unset; composer remove ergebnis/php-cs-fixer-config psalm/plugin-phpunit vimeo/psalm --dev --no-interaction --no-progress; composer require phpunit/phpunit:^7.2.0 --no-interaction --quiet --update-with-all-dependencies; vendor/bin/phpunit --configuration=test/Unit/phpunit.xml --coverage-text; git checkout HEAD -- composer.json composer.lock +code-coverage: vendor ## Collects code coverage from running unit tests with phpunit/phpunit + composer config platform.php --unset; composer remove ergebnis/php-cs-fixer-config --dev --no-interaction --no-progress; composer require phpunit/phpunit:^7.2.0 --no-interaction --quiet --update-with-all-dependencies; vendor/bin/phpunit --configuration=test/Unit/phpunit.xml --coverage-text; git checkout HEAD -- composer.json composer.lock .PHONY: coding-standards coding-standards: vendor ## Lints YAML files with yamllint, normalizes composer.json with ergebnis/composer-normalize, and fixes code style issues with friendsofphp/php-cs-fixer @@ -41,14 +41,14 @@ security-analysis: vendor ## Runs a security analysis with composer composer audit .PHONY: static-code-analysis -static-code-analysis: vendor ## Runs a static code analysis with vimeo/psalm - vendor/bin/psalm --config=psalm.xml --clear-cache - vendor/bin/psalm --config=psalm.xml --show-info=false --stats --threads=4 +static-code-analysis: vendor ## Runs a static code analysis with phpstan/phpstan + vendor/bin/phpstan clear-result-cache --configuration=phpstan.neon + vendor/bin/phpstan --configuration=phpstan.neon --memory-limit=-1 .PHONY: static-code-analysis-baseline -static-code-analysis-baseline: vendor ## Generates a baseline for static code analysis with vimeo/psalm - vendor/bin/psalm --config=psalm.xml --clear-cache - vendor/bin/psalm --config=psalm.xml --set-baseline=psalm-baseline.xml +static-code-analysis-baseline: vendor ## Generates a baseline for static code analysis with phpstan/phpstan + vendor/bin/phpstan clear-result-cache --configuration=phpstan.neon + vendor/bin/phpstan --allow-empty-baseline --configuration=phpstan.neon --generate-baseline=phpstan-baseline.neon --memory-limit=-1 .PHONY: tests tests: phar ## Runs unit, end-to-end, and phar tests with phpunit/phpunit diff --git a/README.md b/README.md index f2748aa4..2edc71df 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ [![Renew](https://github.com/ergebnis/phpunit-slow-test-detector/workflows/Renew/badge.svg)](https://github.com/ergebnis/phpunit-slow-test-detector/actions) [![Code Coverage](https://codecov.io/gh/ergebnis/phpunit-slow-test-detector/branch/main/graph/badge.svg)](https://codecov.io/gh/ergebnis/phpunit-slow-test-detector) -[![Type Coverage](https://shepherd.dev/github/ergebnis/phpunit-slow-test-detector/coverage.svg)](https://shepherd.dev/github/ergebnis/phpunit-slow-test-detector) [![Latest Stable Version](https://poser.pugx.org/ergebnis/phpunit-slow-test-detector/v/stable)](https://packagist.org/packages/ergebnis/phpunit-slow-test-detector) [![Total Downloads](https://poser.pugx.org/ergebnis/phpunit-slow-test-detector/downloads)](https://packagist.org/packages/ergebnis/phpunit-slow-test-detector) diff --git a/composer.json b/composer.json index e194c73c..414155e6 100644 --- a/composer.json +++ b/composer.json @@ -32,10 +32,13 @@ "ergebnis/license": "^2.5.0", "ergebnis/php-cs-fixer-config": "^6.37.0", "fakerphp/faker": "~1.20.0", - "psalm/plugin-phpunit": "~0.19.0", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.10", + "phpstan/phpstan-deprecation-rules": "^1.2.1", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", "psr/container": "~1.0.0", - "rector/rector": "^1.2.10", - "vimeo/psalm": "^5.26.1" + "rector/rector": "^1.2.10" }, "minimum-stability": "dev", "prefer-stable": true, @@ -51,7 +54,8 @@ }, "config": { "allow-plugins": { - "ergebnis/composer-normalize": true + "ergebnis/composer-normalize": true, + "phpstan/extension-installer": true }, "audit": { "abandoned": "report" @@ -63,6 +67,9 @@ "sort-packages": true }, "extra": { + "branch-alias": { + "dev-main": "2.16-dev" + }, "composer-normalize": { "indent-size": 2, "indent-style": "space" diff --git a/composer.lock b/composer.lock index 04a12af6..1b3b3617 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "7149f9d25188cdde83f921b6127d14fc", + "content-hash": "8bd93ca5a1e518b3adb5f54d72914a49", "packages": [ { "name": "doctrine/instantiator", @@ -1740,166 +1740,6 @@ } ], "packages-dev": [ - { - "name": "amphp/amp", - "version": "v2.6.4", - "source": { - "type": "git", - "url": "https://github.com/amphp/amp.git", - "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/amphp/amp/zipball/ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", - "reference": "ded3d9be08f526089eb7ee8d9f16a9768f9dec2d", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "require-dev": { - "amphp/php-cs-fixer-config": "dev-master", - "amphp/phpunit-util": "^1", - "ext-json": "*", - "jetbrains/phpstorm-stubs": "^2019.3", - "phpunit/phpunit": "^7 | ^8 | ^9", - "react/promise": "^2", - "vimeo/psalm": "^3.12" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "files": [ - "lib/functions.php", - "lib/Internal/functions.php" - ], - "psr-4": { - "Amp\\": "lib" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Daniel Lowrey", - "email": "rdlowrey@php.net" - }, - { - "name": "Aaron Piotrowski", - "email": "aaron@trowski.com" - }, - { - "name": "Bob Weinand", - "email": "bobwei9@hotmail.com" - }, - { - "name": "Niklas Keller", - "email": "me@kelunik.com" - } - ], - "description": "A non-blocking concurrency framework for PHP applications.", - "homepage": "https://amphp.org/amp", - "keywords": [ - "async", - "asynchronous", - "awaitable", - "concurrency", - "event", - "event-loop", - "future", - "non-blocking", - "promise" - ], - "support": { - "irc": "irc://irc.freenode.org/amphp", - "issues": "https://github.com/amphp/amp/issues", - "source": "https://github.com/amphp/amp/tree/v2.6.4" - }, - "funding": [ - { - "url": "https://github.com/amphp", - "type": "github" - } - ], - "time": "2024-03-21T18:52:26+00:00" - }, - { - "name": "amphp/byte-stream", - "version": "v1.8.2", - "source": { - "type": "git", - "url": "https://github.com/amphp/byte-stream.git", - "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc", - "reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc", - "shasum": "" - }, - "require": { - "amphp/amp": "^2", - "php": ">=7.1" - }, - "require-dev": { - "amphp/php-cs-fixer-config": "dev-master", - "amphp/phpunit-util": "^1.4", - "friendsofphp/php-cs-fixer": "^2.3", - "jetbrains/phpstorm-stubs": "^2019.3", - "phpunit/phpunit": "^6 || ^7 || ^8", - "psalm/phar": "^3.11.4" - }, - "type": "library", - "autoload": { - "files": [ - "lib/functions.php" - ], - "psr-4": { - "Amp\\ByteStream\\": "lib" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Piotrowski", - "email": "aaron@trowski.com" - }, - { - "name": "Niklas Keller", - "email": "me@kelunik.com" - } - ], - "description": "A stream abstraction to make working with non-blocking I/O simple.", - "homepage": "https://amphp.org/byte-stream", - "keywords": [ - "amp", - "amphp", - "async", - "io", - "non-blocking", - "stream" - ], - "support": { - "issues": "https://github.com/amphp/byte-stream/issues", - "source": "https://github.com/amphp/byte-stream/tree/v1.8.2" - }, - "funding": [ - { - "url": "https://github.com/amphp", - "type": "github" - } - ], - "time": "2024-04-13T18:00:56+00:00" - }, { "name": "clue/ndjson-react", "version": "v1.3.0", @@ -1964,79 +1804,6 @@ ], "time": "2022-12-23T10:58:28+00:00" }, - { - "name": "composer/package-versions-deprecated", - "version": "1.11.99.5", - "source": { - "type": "git", - "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d", - "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1.0 || ^2.0", - "php": "^7 || ^8" - }, - "replace": { - "ocramius/package-versions": "1.11.99" - }, - "require-dev": { - "composer/composer": "^1.9.3 || ^2.0@dev", - "ext-zip": "^1.13", - "phpunit/phpunit": "^6.5 || ^7" - }, - "type": "composer-plugin", - "extra": { - "class": "PackageVersions\\Installer", - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "PackageVersions\\": "src/PackageVersions" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "support": { - "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-01-17T14:14:24+00:00" - }, { "name": "composer/pcre", "version": "3.3.1", @@ -2263,90 +2030,6 @@ ], "time": "2024-05-06T16:37:16+00:00" }, - { - "name": "dnoegel/php-xdg-base-dir", - "version": "v0.1.1", - "source": { - "type": "git", - "url": "https://github.com/dnoegel/php-xdg-base-dir.git", - "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", - "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", - "shasum": "" - }, - "require": { - "php": ">=5.3.2" - }, - "require-dev": { - "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "XdgBaseDir\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "implementation of xdg base directory specification for php", - "support": { - "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues", - "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1" - }, - "time": "2019-12-04T15:06:13+00:00" - }, - { - "name": "doctrine/deprecations", - "version": "1.1.3", - "source": { - "type": "git", - "url": "https://github.com/doctrine/deprecations.git", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^9", - "phpstan/phpstan": "1.4.10 || 1.10.15", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psalm/plugin-phpunit": "0.18.4", - "psr/log": "^1 || ^2 || ^3", - "vimeo/psalm": "4.30.0 || 5.12.0" - }, - "suggest": { - "psr/log": "Allows logging deprecations via PSR-3 logger implementation" - }, - "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", - "homepage": "https://www.doctrine-project.org/", - "support": { - "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.3" - }, - "time": "2024-01-30T19:34:25+00:00" - }, { "name": "ergebnis/composer-normalize", "version": "2.44.0", @@ -3069,107 +2752,6 @@ }, "time": "2022-07-20T13:12:54+00:00" }, - { - "name": "felixfbecker/advanced-json-rpc", - "version": "v3.2.1", - "source": { - "type": "git", - "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git", - "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447", - "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447", - "shasum": "" - }, - "require": { - "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", - "php": "^7.1 || ^8.0", - "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0" - }, - "require-dev": { - "phpunit/phpunit": "^7.0 || ^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "AdvancedJsonRpc\\": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "ISC" - ], - "authors": [ - { - "name": "Felix Becker", - "email": "felix.b@outlook.com" - } - ], - "description": "A more advanced JSONRPC implementation", - "support": { - "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues", - "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1" - }, - "time": "2021-06-11T22:34:44+00:00" - }, - { - "name": "felixfbecker/language-server-protocol", - "version": "v1.5.2", - "source": { - "type": "git", - "url": "https://github.com/felixfbecker/php-language-server-protocol.git", - "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842", - "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "require-dev": { - "phpstan/phpstan": "*", - "squizlabs/php_codesniffer": "^3.1", - "vimeo/psalm": "^4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "LanguageServerProtocol\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "ISC" - ], - "authors": [ - { - "name": "Felix Becker", - "email": "felix.b@outlook.com" - } - ], - "description": "PHP classes for the Language Server Protocol", - "keywords": [ - "language", - "microsoft", - "php", - "server" - ], - "support": { - "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues", - "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2" - }, - "time": "2022-03-02T22:36:06+00:00" - }, { "name": "fidry/cpu-core-counter", "version": "1.2.0", @@ -3446,350 +3028,125 @@ "time": "2024-08-16T20:44:35+00:00" }, { - "name": "localheinz/diff", - "version": "1.1.1", - "source": { - "type": "git", - "url": "https://github.com/localheinz/diff.git", - "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c", - "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.0", - "symfony/process": "^4.2 || ^5" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - } - ], - "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize", - "homepage": "https://github.com/localheinz/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ], - "support": { - "source": "https://github.com/localheinz/diff/tree/main" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2020-07-06T04:49:32+00:00" - }, - { - "name": "netresearch/jsonmapper", - "version": "v4.5.0", - "source": { - "type": "git", - "url": "https://github.com/cweiske/jsonmapper.git", - "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5", - "reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ext-pcre": "*", - "ext-reflection": "*", - "ext-spl": "*", - "php": ">=7.1" - }, - "require-dev": { - "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0", - "squizlabs/php_codesniffer": "~3.5" - }, - "type": "library", - "autoload": { - "psr-0": { - "JsonMapper": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "OSL-3.0" - ], - "authors": [ - { - "name": "Christian Weiske", - "email": "cweiske@cweiske.de", - "homepage": "http://github.com/cweiske/jsonmapper/", - "role": "Developer" - } - ], - "description": "Map nested JSON structures onto PHP classes", - "support": { - "email": "cweiske@cweiske.de", - "issues": "https://github.com/cweiske/jsonmapper/issues", - "source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0" - }, - "time": "2024-09-08T10:13:13+00:00" - }, - { - "name": "phpdocumentor/reflection-common", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" - }, - "time": "2020-06-27T09:03:43+00:00" - }, - { - "name": "phpdocumentor/reflection-docblock", - "version": "5.4.1", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", - "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", - "shasum": "" - }, - "require": { - "doctrine/deprecations": "^1.1", - "ext-filter": "*", - "php": "^7.4 || ^8.0", - "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.7", - "phpstan/phpdoc-parser": "^1.7", - "webmozart/assert": "^1.9.1" - }, - "require-dev": { - "mockery/mockery": "~1.3.5", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-webmozart-assert": "^1.2", - "phpunit/phpunit": "^9.5", - "vimeo/psalm": "^5.13" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - }, - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1" - }, - "time": "2024-05-21T05:55:05+00:00" - }, - { - "name": "phpdocumentor/type-resolver", - "version": "1.8.2", + "name": "localheinz/diff", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "153ae662783729388a584b4361f2545e4d841e3c" + "url": "https://github.com/localheinz/diff.git", + "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c", - "reference": "153ae662783729388a584b4361f2545e4d841e3c", + "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c", + "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c", "shasum": "" }, "require": { - "doctrine/deprecations": "^1.0", - "php": "^7.3 || ^8.0", - "phpdocumentor/reflection-common": "^2.0", - "phpstan/phpdoc-parser": "^1.13" + "php": "^7.1 || ^8.0" }, "require-dev": { - "ext-tokenizer": "*", - "phpbench/phpbench": "^1.2", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^9.5", - "rector/rector": "^0.13.9", - "vimeo/psalm": "^4.25" + "phpunit/phpunit": "^7.5 || ^8.0", + "symfony/process": "^4.2 || ^5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - } - }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" } ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize", + "homepage": "https://github.com/localheinz/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2" + "source": "https://github.com/localheinz/diff/tree/main" }, - "time": "2024-02-23T11:10:43+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-07-06T04:49:32+00:00" }, { - "name": "phpstan/phpdoc-parser", - "version": "1.30.1", + "name": "phpstan/extension-installer", + "version": "1.4.3", "source": { "type": "git", - "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "51b95ec8670af41009e2b2b56873bad96682413e" + "url": "https://github.com/phpstan/extension-installer.git", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e", - "reference": "51b95ec8670af41009e2b2b56873bad96682413e", + "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/85e90b3942d06b2326fba0403ec24fe912372936", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "composer-plugin-api": "^2.0", + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.0 || ^2.0" }, "require-dev": { - "doctrine/annotations": "^2.0", - "nikic/php-parser": "^4.15", - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.5", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5", - "symfony/process": "^5.2" + "composer/composer": "^2.0", + "php-parallel-lint/php-parallel-lint": "^1.2.0", + "phpstan/phpstan-strict-rules": "^0.11 || ^0.12 || ^1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "PHPStan\\ExtensionInstaller\\Plugin" }, - "type": "library", "autoload": { "psr-4": { - "PHPStan\\PhpDocParser\\": [ - "src/" - ] + "PHPStan\\ExtensionInstaller\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPDoc parser with support for nullable, intersection and generic types", + "description": "Composer plugin for automatic installation of PHPStan extensions", + "keywords": [ + "dev", + "static analysis" + ], "support": { - "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1" + "issues": "https://github.com/phpstan/extension-installer/issues", + "source": "https://github.com/phpstan/extension-installer/tree/1.4.3" }, - "time": "2024-09-07T20:13:05+00:00" + "time": "2024-09-04T20:21:43+00:00" }, { "name": "phpstan/phpstan", - "version": "1.12.9", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c", - "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -3834,67 +3191,155 @@ "type": "github" } ], - "time": "2024-11-10T17:10:04+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { - "name": "psalm/plugin-phpunit", - "version": "0.19.0", + "name": "phpstan/phpstan-deprecation-rules", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/psalm/psalm-plugin-phpunit.git", - "reference": "e344eaaa27871e79c6cb97b9efe52a735f9d1966" + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/psalm/psalm-plugin-phpunit/zipball/e344eaaa27871e79c6cb97b9efe52a735f9d1966", - "reference": "e344eaaa27871e79c6cb97b9efe52a735f9d1966", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82", "shasum": "" }, "require": { - "composer/package-versions-deprecated": "^1.10", - "composer/semver": "^1.4 || ^2.0 || ^3.0", - "ext-simplexml": "*", - "php": "^7.4 || ^8.0", - "vimeo/psalm": "dev-master || ^5@beta || ^5.0" + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12" + }, + "require-dev": { + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", + "support": { + "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1" + }, + "time": "2024-09-11T15:52:35+00:00" + }, + { + "name": "phpstan/phpstan-phpunit", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-phpunit.git", + "reference": "11d4235fbc6313ecbf93708606edfd3222e44949" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/11d4235fbc6313ecbf93708606edfd3222e44949", + "reference": "11d4235fbc6313ecbf93708606edfd3222e44949", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12" }, "conflict": { - "phpunit/phpunit": "<7.5" + "phpunit/phpunit": "<7.0" }, "require-dev": { - "codeception/codeception": "^4.0.3", - "php": "^7.3 || ^8.0", - "phpunit/phpunit": "^7.5 || ^8.0 || ^9.0", - "squizlabs/php_codesniffer": "^3.3.1", - "weirdan/codeception-psalm-module": "^0.11.0", - "weirdan/prophecy-shim": "^1.0 || ^2.0" - }, - "type": "psalm-plugin", + "nikic/php-parser": "^4.13.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-strict-rules": "^1.5.1", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", "extra": { - "psalm": { - "pluginClass": "Psalm\\PhpUnitPlugin\\Plugin" + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] } }, "autoload": { "psr-4": { - "Psalm\\PhpUnitPlugin\\": "src" + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Matt Brown", - "email": "github@muglug.com" + "description": "PHPUnit extensions and rules for PHPStan", + "support": { + "issues": "https://github.com/phpstan/phpstan-phpunit/issues", + "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.1" + }, + "time": "2024-11-12T12:43:59+00:00" + }, + { + "name": "phpstan/phpstan-strict-rules", + "version": "1.6.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-strict-rules.git", + "reference": "daeec748b53de80a97498462513066834ec28f8b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-strict-rules/zipball/daeec748b53de80a97498462513066834ec28f8b", + "reference": "daeec748b53de80a97498462513066834ec28f8b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12.4" + }, + "require-dev": { + "nikic/php-parser": "^4.13.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-deprecation-rules": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "rules.neon" + ] } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" ], - "description": "Psalm plugin for PHPUnit", + "description": "Extra strict and opinionated rules for PHPStan", "support": { - "issues": "https://github.com/psalm/psalm-plugin-phpunit/issues", - "source": "https://github.com/psalm/psalm-plugin-phpunit/tree/0.19.0" + "issues": "https://github.com/phpstan/phpstan-strict-rules/issues", + "source": "https://github.com/phpstan/phpstan-strict-rules/tree/1.6.1" }, - "time": "2024-03-15T10:43:15+00:00" + "time": "2024-09-20T14:04:44+00:00" }, { "name": "psr/container", @@ -4638,70 +4083,6 @@ ], "time": "2024-11-08T13:59:10+00:00" }, - { - "name": "spatie/array-to-xml", - "version": "2.17.1", - "source": { - "type": "git", - "url": "https://github.com/spatie/array-to-xml.git", - "reference": "5cbec9c6ab17e320c58a259f0cebe88bde4a7c46" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/spatie/array-to-xml/zipball/5cbec9c6ab17e320c58a259f0cebe88bde4a7c46", - "reference": "5cbec9c6ab17e320c58a259f0cebe88bde4a7c46", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "php": "^7.4|^8.0" - }, - "require-dev": { - "mockery/mockery": "^1.2", - "pestphp/pest": "^1.21", - "phpunit/phpunit": "^9.0", - "spatie/pest-plugin-snapshots": "^1.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Spatie\\ArrayToXml\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Freek Van der Herten", - "email": "freek@spatie.be", - "homepage": "https://freek.dev", - "role": "Developer" - } - ], - "description": "Convert an array to xml", - "homepage": "https://github.com/spatie/array-to-xml", - "keywords": [ - "array", - "convert", - "xml" - ], - "support": { - "source": "https://github.com/spatie/array-to-xml/tree/2.17.1" - }, - "funding": [ - { - "url": "https://spatie.be/open-source/support-us", - "type": "custom" - }, - { - "url": "https://github.com/spatie", - "type": "github" - } - ], - "time": "2022-12-26T08:22:07+00:00" - }, { "name": "symfony/console", "version": "v5.4.44", @@ -6069,185 +5450,17 @@ } ], "time": "2024-09-20T07:56:40+00:00" - }, - { - "name": "vimeo/psalm", - "version": "5.26.1", - "source": { - "type": "git", - "url": "https://github.com/vimeo/psalm.git", - "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/vimeo/psalm/zipball/d747f6500b38ac4f7dfc5edbcae6e4b637d7add0", - "reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0", - "shasum": "" - }, - "require": { - "amphp/amp": "^2.4.2", - "amphp/byte-stream": "^1.5", - "composer-runtime-api": "^2", - "composer/semver": "^1.4 || ^2.0 || ^3.0", - "composer/xdebug-handler": "^2.0 || ^3.0", - "dnoegel/php-xdg-base-dir": "^0.1.1", - "ext-ctype": "*", - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-simplexml": "*", - "ext-tokenizer": "*", - "felixfbecker/advanced-json-rpc": "^3.1", - "felixfbecker/language-server-protocol": "^1.5.2", - "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0", - "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", - "nikic/php-parser": "^4.17", - "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", - "sebastian/diff": "^4.0 || ^5.0 || ^6.0", - "spatie/array-to-xml": "^2.17.0 || ^3.0", - "symfony/console": "^4.1.6 || ^5.0 || ^6.0 || ^7.0", - "symfony/filesystem": "^5.4 || ^6.0 || ^7.0" - }, - "conflict": { - "nikic/php-parser": "4.17.0" - }, - "provide": { - "psalm/psalm": "self.version" - }, - "require-dev": { - "amphp/phpunit-util": "^2.0", - "bamarni/composer-bin-plugin": "^1.4", - "brianium/paratest": "^6.9", - "ext-curl": "*", - "mockery/mockery": "^1.5", - "nunomaduro/mock-final-classes": "^1.1", - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpdoc-parser": "^1.6", - "phpunit/phpunit": "^9.6", - "psalm/plugin-mockery": "^1.1", - "psalm/plugin-phpunit": "^0.18", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.6", - "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0" - }, - "suggest": { - "ext-curl": "In order to send data to shepherd", - "ext-igbinary": "^2.0.5 is required, used to serialize caching data" - }, - "bin": [ - "psalm", - "psalm-language-server", - "psalm-plugin", - "psalm-refactor", - "psalter" - ], - "type": "project", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev", - "dev-4.x": "4.x-dev", - "dev-3.x": "3.x-dev", - "dev-2.x": "2.x-dev", - "dev-1.x": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psalm\\": "src/Psalm/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Matthew Brown" - } - ], - "description": "A static analysis tool for finding errors in PHP applications", - "keywords": [ - "code", - "inspection", - "php", - "static analysis" - ], - "support": { - "docs": "https://psalm.dev/docs", - "issues": "https://github.com/vimeo/psalm/issues", - "source": "https://github.com/vimeo/psalm" - }, - "time": "2024-09-08T18:53:08+00:00" - }, - { - "name": "webmozart/assert", - "version": "1.11.0", - "source": { - "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", - "shasum": "" - }, - "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.13" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, - "autoload": { - "psr-4": { - "Webmozart\\Assert\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" - } - ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" - }, - "time": "2022-06-03T18:03:27+00:00" } ], "aliases": [], "minimum-stability": "dev", - "stability-flags": [], + "stability-flags": {}, "prefer-stable": true, "prefer-lowest": false, "platform": { "php": "~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" }, - "platform-dev": [], + "platform-dev": {}, "platform-overrides": { "php": "7.4.33" }, diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 00000000..4320b380 --- /dev/null +++ b/phpstan-baseline.neon @@ -0,0 +1,1637 @@ +parameters: + ignoreErrors: + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Collector\\\\Collector\\:\\:collect\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Collector/Collector.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Collector\\\\DefaultCollector\\:\\:collect\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Collector/DefaultCollector.php + + - + message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\Test\\:\\:getName\\(\\)\\.$#" + count: 3 + path: src/Extension.php + + - + message: "#^Call to method get\\(\\) on an unknown class PHPUnit\\\\Runner\\\\Extension\\\\ParameterCollection\\.$#" + count: 2 + path: src/Extension.php + + - + message: "#^Call to method has\\(\\) on an unknown class PHPUnit\\\\Runner\\\\Extension\\\\ParameterCollection\\.$#" + count: 2 + path: src/Extension.php + + - + message: "#^Call to method noOutput\\(\\) on an unknown class PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Call to method registerSubscribers\\(\\) on an unknown class PHPUnit\\\\Runner\\\\Extension\\\\Facade\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Class Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension implements deprecated interface PHPUnit\\\\Framework\\\\TestListener\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:__construct\\(\\) has parameter \\$options with no value type specified in iterable type array\\.$#" + count: 2 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addError\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addError\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addFailure\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addFailure\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addIncompleteTest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addIncompleteTest\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addRiskyTest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addRiskyTest\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addSkippedTest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addSkippedTest\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addWarning\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:addWarning\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:endTest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:endTest\\(\\) has parameter \\$time with no type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:endTestSuite\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:startTest\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:startTestSuite\\(\\) has no return type specified\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Parameter \\#1 \\$className of static method PHPUnit\\\\Util\\\\Test\\:\\:parseTestMethodAnnotations\\(\\) expects class\\-string, string given\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Parameter \\$configuration of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:bootstrap\\(\\) has invalid type PHPUnit\\\\TextUI\\\\Configuration\\\\Configuration\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Parameter \\$facade of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:bootstrap\\(\\) has invalid type PHPUnit\\\\Runner\\\\Extension\\\\Facade\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Parameter \\$parameters of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Extension\\:\\:bootstrap\\(\\) has invalid type PHPUnit\\\\Runner\\\\Extension\\\\ParameterCollection\\.$#" + count: 1 + path: src/Extension.php + + - + message: "#^Call to an undefined method PHPUnit\\\\Framework\\\\TestCase\\:\\:dataSetAsStringWithData\\(\\)\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to an undefined method ReflectionMethod\\:\\:getAttributes\\(\\)\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method className\\(\\) on an unknown class PHPUnit\\\\Event\\\\Code\\\\TestMethod\\.$#" + count: 4 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method isTestMethod\\(\\) on an unknown class PHPUnit\\\\Event\\\\Code\\\\Test\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method methodName\\(\\) on an unknown class PHPUnit\\\\Event\\\\Code\\\\TestMethod\\.$#" + count: 4 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method name\\(\\) on an unknown class PHPUnit\\\\Event\\\\Code\\\\Test\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method nameWithClass\\(\\) on an unknown class PHPUnit\\\\Event\\\\Code\\\\TestMethod\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method telemetryInfo\\(\\) on an unknown class PHPUnit\\\\Event\\\\Test\\\\Finished\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method test\\(\\) on an unknown class PHPUnit\\\\Event\\\\Test\\\\Finished\\.$#" + count: 4 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method testData\\(\\) on an unknown class PHPUnit\\\\Event\\\\Code\\\\TestMethod\\.$#" + count: 3 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to static method getInstance\\(\\) on an unknown class PHPUnit\\\\Metadata\\\\Annotation\\\\Parser\\\\Registry\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^PHPDoc tag @var for variable \\$test contains unknown class PHPUnit\\\\Event\\\\Code\\\\TestMethod\\.$#" + count: 3 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Parameter \\$event of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\Test\\\\FinishedSubscriber\\:\\:notify\\(\\) has invalid type PHPUnit\\\\Event\\\\Test\\\\Finished\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Parameter \\$test of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\Test\\\\FinishedSubscriber\\:\\:descriptionFromTest\\(\\) has invalid type PHPUnit\\\\Event\\\\Code\\\\Test\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Parameter \\$test of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\Test\\\\FinishedSubscriber\\:\\:resolveMaximumDuration\\(\\) has invalid type PHPUnit\\\\Event\\\\Code\\\\Test\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Parameter \\$test of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\Test\\\\FinishedSubscriber\\:\\:resolveMaximumDurationFromAnnotation\\(\\) has invalid type PHPUnit\\\\Event\\\\Code\\\\Test\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Parameter \\$test of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\Test\\\\FinishedSubscriber\\:\\:resolveMaximumDurationFromAttribute\\(\\) has invalid type PHPUnit\\\\Event\\\\Code\\\\Test\\.$#" + count: 1 + path: src/Subscriber/Test/FinishedSubscriber.php + + - + message: "#^Call to method telemetryInfo\\(\\) on an unknown class PHPUnit\\\\Event\\\\Test\\\\PreparationStarted\\.$#" + count: 1 + path: src/Subscriber/Test/PreparationStartedSubscriber.php + + - + message: "#^Call to method test\\(\\) on an unknown class PHPUnit\\\\Event\\\\Test\\\\PreparationStarted\\.$#" + count: 1 + path: src/Subscriber/Test/PreparationStartedSubscriber.php + + - + message: "#^Parameter \\$event of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\Test\\\\PreparationStartedSubscriber\\:\\:notify\\(\\) has invalid type PHPUnit\\\\Event\\\\Test\\\\PreparationStarted\\.$#" + count: 1 + path: src/Subscriber/Test/PreparationStartedSubscriber.php + + - + message: "#^Parameter \\$event of method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Subscriber\\\\TestRunner\\\\ExecutionFinishedSubscriber\\:\\:notify\\(\\) has invalid type PHPUnit\\\\Event\\\\TestRunner\\\\ExecutionFinished\\.$#" + count: 1 + path: src/Subscriber/TestRunner/ExecutionFinishedSubscriber.php + + - + message: "#^Offset 'major' does not exist on array\\{0\\?\\: string, major\\?\\: numeric\\-string, 1\\?\\: numeric\\-string, 2\\?\\: '0'\\|\\(non\\-falsy\\-string&numeric\\-string\\), minor\\?\\: ''\\|numeric\\-string, 3\\?\\: ''\\|numeric\\-string, 4\\?\\: '0'\\|\\(non\\-falsy\\-string&numeric\\-string\\)\\}\\.$#" + count: 1 + path: src/Version/Series.php + + - + message: "#^Call to static method create\\(\\) on an unknown class Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\DataProvider\\\\Exception\\\\EmptyValues\\.$#" + count: 2 + path: test/DataProvider/AbstractProvider.php + + - + message: "#^Call to static method filtered\\(\\) on an unknown class Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\DataProvider\\\\Exception\\\\EmptyValues\\.$#" + count: 1 + path: test/DataProvider/AbstractProvider.php + + - + message: "#^PHPDoc tag @throws with type Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\DataProvider\\\\Exception\\\\EmptyValues is not subtype of Throwable$#" + count: 2 + path: test/DataProvider/AbstractProvider.php + + - + message: "#^Generator expects value type array\\{int\\}, array\\{mixed\\} given\\.$#" + count: 7 + path: test/DataProvider/IntProvider.php + + - + message: "#^Generator expects value type array\\{string\\}, array\\{mixed\\} given\\.$#" + count: 6 + path: test/DataProvider/StringProvider.php + + - + message: "#^Parameter \\#2 \\.\\.\\.\\$args of function array_merge expects array, array\\\\|false given\\.$#" + count: 1 + path: test/DataProvider/StringProvider.php + + - + message: "#^Parameter \\#4 \\.\\.\\.\\$args of function array_merge expects array, array\\\\|false given\\.$#" + count: 1 + path: test/DataProvider/StringProvider.php + + - + message: "#^Parameter \\#5 \\.\\.\\.\\$args of function array_merge expects array, array\\\\|false given\\.$#" + count: 1 + path: test/DataProvider/StringProvider.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\Configuration\\\\Defaults\\\\SleeperTest\\:\\:testSleeperSleepsLessThanDefaultMaximumDuration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/Configuration/Defaults/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\Configuration\\\\Defaults\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/Configuration/Defaults/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\Configuration\\\\MaximumCount\\\\SleeperTest\\:\\:testSleeperSleepsLessThanDefaultMaximumDuration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/Configuration/MaximumCount/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\Configuration\\\\MaximumCount\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanDefaultMaximumDurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/Configuration/MaximumCount/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\Configuration\\\\MaximumDuration\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/Configuration/MaximumDuration/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\Configuration\\\\MaximumDuration\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/Configuration/MaximumDuration/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Bare\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Bare/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Bare\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Bare/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:assertPostConditions\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:assertPreConditions\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:setUp\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:setUpBeforeClass\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:sleepWithAfterAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:sleepWithAfterClassAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:sleepWithBeforeAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:sleepWithBeforeClassAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:tearDown\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:tearDownAfterClass\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\Combination\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/Combination/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAfterAnnotation\\\\SleeperTest\\:\\:sleepWithAfterAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAfterAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAfterAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAfterAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAfterAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAfterAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAfterClassAnnotation\\\\SleeperTest\\:\\:sleepWithAfterClassAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAfterClassAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAfterClassAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAfterClassAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAssertPostConditions\\\\SleeperTest\\:\\:assertPostConditions\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAssertPostConditions\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAssertPostConditions\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAssertPreConditions\\\\SleeperTest\\:\\:assertPreConditions\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAssertPreConditions\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithAssertPreConditions\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithBeforeAnnotation\\\\SleeperTest\\:\\:sleepWithBeforeAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithBeforeAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithBeforeAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithBeforeAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithBeforeClassAnnotation\\\\SleeperTest\\:\\:sleepWithBeforeClassAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithBeforeClassAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithBeforeClassAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithBeforeClassAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithDataProvider\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithDataProvider/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithDataProvider\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithDataProvider/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithSetUp\\\\SleeperTest\\:\\:setUp\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithSetUp\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithSetUp\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithSetUpBeforeClass\\\\SleeperTest\\:\\:setUpBeforeClass\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithSetUpBeforeClass\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithSetUpBeforeClass\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithTearDown\\\\SleeperTest\\:\\:tearDown\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithTearDown\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithTearDown\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithTearDownAfterClass\\\\SleeperTest\\:\\:tearDownAfterClass\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithTearDownAfterClass\\\\SleeperTest\\:\\:testSleeperSleepsLessThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestCase\\\\WithTearDownAfterClass\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWithDataProvider\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithMaximumDurationAndSlowThresholdAnnotations\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithMaximumDurationAndSlowThresholdAnnotations\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithMaximumDurationAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithMaximumDurationAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithMaximumDurationAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromAnnotationWhenTestMethodHasValidMaximumDurationAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithMaximumDurationAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidMaximumDurationAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithMaximumDurationAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:assertPostConditions\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:assertPreConditions\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:setUp\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:setUpBeforeClass\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:sleepWithAfterAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:sleepWithAfterClassAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:sleepWithBeforeAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:sleepWithBeforeClassAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:tearDown\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:tearDownAfterClass\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromXmlConfiguration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithRunInSeparateProcessAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenMethodHasRunInSeparateProcessAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithSlowThresholdAndMaximumDurationAnnotations\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithSlowThresholdAndMaximumDurationAnnotations\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromAnnotationWhenTestMethodHasMaximumDurationAndSlowThresholdAnnotations\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithSlowThresholdAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithSlowThresholdAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsLongerThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithSlowThresholdAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanMaximumDurationFromXmlConfigurationWhenTestMethodHasInvalidSlowThresholdAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\EndToEnd\\\\Version06\\\\TestMethod\\\\WithSlowThresholdAnnotation\\\\SleeperTest\\:\\:testSleeperSleepsShorterThanSlowThresholdFromAnnotationWhenTestMethodHasValidSlowThresholdAnnotation\\(\\) has no return type specified\\.$#" + count: 1 + path: test/EndToEnd/Version06/TestMethod/WithSlowThresholdAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Configuration/Defaults/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Configuration/Defaults/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Configuration/MaximumCount/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Configuration/MaximumCount/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Configuration/MaximumDuration/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Configuration/MaximumDuration/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/Option/NoOutput/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Bare/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Bare/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterClassAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAfterClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeClassAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithBeforeClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithDataProvider/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithDataProvider/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithMaximumDurationAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithMaximumDurationAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\RunInSeparateProcess does not exist\\.$#" + count: 2 + path: test/EndToEnd/Version10/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version10/TestMethod/WithSlowThresholdAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Configuration/Defaults/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Configuration/Defaults/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Configuration/MaximumCount/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Configuration/MaximumCount/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Configuration/MaximumDuration/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Configuration/MaximumDuration/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/Option/NoOutput/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Bare/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Bare/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/Combination/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAfterAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAfterAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAfterAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAfterClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAssertPostConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithAssertPreConditions/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithBeforeAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithBeforeAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithBeforeAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithBeforeClassAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithDataProvider/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithDataProvider/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithSetUp/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithSetUpBeforeClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithTearDown/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\DataProvider does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestCase/WithTearDownAfterClass/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithMaximumDurationAndSlowThresholdAnnotations/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithMaximumDurationAnnotation/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithMaximumDurationAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\After does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\AfterClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\Before does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\BeforeClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\RunInSeparateProcess does not exist\\.$#" + count: 2 + path: test/EndToEnd/Version11/TestMethod/WithRunInSeparateProcessAttribute/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithSlowThresholdAndMaximumDurationAnnotations/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/EndToEnd/Version11/TestMethod/WithSlowThresholdAnnotation/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Fixture\\\\Sleeper\\:\\:sleep\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Fixture/Sleeper.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/Phar/Version10/SleeperTest.php + + - + message: "#^Attribute class PHPUnit\\\\Framework\\\\Attributes\\\\CoversClass does not exist\\.$#" + count: 1 + path: test/Phar/Version11/SleeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Attribute\\\\MaximumDurationTest\\:\\:testConstructorRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Attribute/MaximumDurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Attribute\\\\MaximumDurationTest\\:\\:testConstructorSetsValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Attribute/MaximumDurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Collector\\\\DefaultCollectorTest\\:\\:testCollectCollectsSlowTests\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Collector/DefaultCollectorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Collector\\\\DefaultCollectorTest\\:\\:testCollectCollectsSlowerTestWithSameTestIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Collector/DefaultCollectorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Collector\\\\DefaultCollectorTest\\:\\:testCollectDoesNotCollectFasterTestWithSameTestIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Collector/DefaultCollectorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Comparator\\\\DurationComparatorTest\\:\\:testReturnsMinusOneWhenOneIsLessThanTwo\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Comparator/DurationComparatorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Comparator\\\\DurationComparatorTest\\:\\:testReturnsPlusOneWhenOneIsGreaterThanTwo\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Comparator/DurationComparatorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Comparator\\\\DurationComparatorTest\\:\\:testReturnsZeroWhenOneEqualsTwo\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Comparator/DurationComparatorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Console\\\\ColorTest\\:\\:testDimReturnsDimmedStringWhenItIsNotWhitespaceOnly\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Console/ColorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Console\\\\ColorTest\\:\\:testDimReturnsOriginalStringWhenItIsWhitespaceOnly\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Console/ColorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\CountTest\\:\\:testFromIntRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/CountTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\CountTest\\:\\:testFromIntReturnsCount\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/CountTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testAddReturnsDuration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testFromMillisecondsRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testFromMillisecondsReturnsDuration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testFromSecondsAndNanosecondsRejectsNanosecondsGreaterThan999999999\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testFromSecondsAndNanosecondsRejectsNanosecondsLessThanZero\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testFromSecondsAndNanosecondsRejectsSecondsLessThanZero\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testFromSecondsAndNanosecondsReturnsDuration\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsGreaterThanReturnsFalseWhenSecondsAreEqualAndNanosecondsAreLess\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsGreaterThanReturnsFalseWhenSecondsAreLess\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsGreaterThanReturnsFalseWhenValuesAreSame\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsGreaterThanReturnsTrueWhenSecondsAreEqualAndNanosecondsAreGreater\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsGreaterThanReturnsTrueWhenSecondsAreGreater\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsLessThanReturnsFalseWhenSecondsAreEqualAndNanosecondsAreGreater\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsLessThanReturnsFalseWhenSecondsAreGreater\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsLessThanReturnsFalseWhenValuesAreSame\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsLessThanReturnsTrueWhenSecondsAreEqualAndNanosecondsAreLess\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\DurationTest\\:\\:testIsLessThanReturnsTrueWhenSecondsAreLess\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/DurationTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidCountTest\\:\\:testNotGreaterThanZeroReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidCountTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidMillisecondsTest\\:\\:testNotGreaterThanZeroReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidMillisecondsTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidNanosecondsTest\\:\\:testNotGreaterThanOrEqualToZeroReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidNanosecondsTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidNanosecondsTest\\:\\:testNotLessThanOrEqualToReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidNanosecondsTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidPhaseIdentifierTest\\:\\:testBlankOrEmptyReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidPhaseIdentifierTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidSecondsTest\\:\\:testNotGreaterThanOrEqualToZeroReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidSecondsTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidSecondsTest\\:\\:testNotGreaterThanZeroReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidSecondsTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidStartTest\\:\\:testNotLessThanOrEqualToEndReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidStartTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidTestDescriptionTest\\:\\:testBlankOrEmptyReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidTestDescriptionTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\InvalidTestIdentifierTest\\:\\:testBlankOrEmptyReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/InvalidTestIdentifierTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Exception\\\\PhaseNotStartedTest\\:\\:testFromPhaseIdentifierReturnsException\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Exception/PhaseNotStartedTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Formatter\\\\DefaultDurationFormatterTest\\:\\:testFormatFormats\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Formatter/DefaultDurationFormatterTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\PhaseIdentifierTest\\:\\:testFromStringRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/PhaseIdentifierTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\PhaseIdentifierTest\\:\\:testFromStringReturnsPhaseIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/PhaseIdentifierTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\PhaseStartTest\\:\\:testCreateReturnsPhaseStart\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/PhaseStartTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\PhaseTest\\:\\:testCreateReturnsPhase\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/PhaseTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Reporter\\\\DefaultReporterTest\\:\\:testReportReturnsEmptyStringWhenThereAreNoSlowTests\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Reporter/DefaultReporterTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Reporter\\\\DefaultReporterTest\\:\\:testReportReturnsReportWhenThereAreFewerSlowTestsThanMaximumCount\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Reporter/DefaultReporterTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\SlowTestTest\\:\\:testCreateReturnsSlowTest\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/SlowTestTest.php + + - + message: "#^Method TestDescriptionTest\\:\\:testFromStringRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TestDescriptionTest.php + + - + message: "#^Method TestDescriptionTest\\:\\:testFromStringReturnsTestDescription\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TestDescriptionTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TestIdentifierTest\\:\\:testFromStringRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TestIdentifierTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TestIdentifierTest\\:\\:testFromStringReturnsTestIdentifier\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TestIdentifierTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeKeeperTest\\:\\:testStopReturnsPhaseWhenPhaseHasBeenStarted\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeKeeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeKeeperTest\\:\\:testStopThrowsPhaseNotStartedExceptionWhenPhaseHasNotBeenStarted\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeKeeperTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeTest\\:\\:testDurationRejectsStartGreaterThanEnd\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeTest\\:\\:testDurationReturnsDifferenceBetweenEndAndStart\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeTest\\:\\:testFromSecondsAndNanosecondsRejectsNanosecondsGreaterThan999999999\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeTest\\:\\:testFromSecondsAndNanosecondsRejectsNegativeNanoseconds\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeTest\\:\\:testFromSecondsAndNanosecondsRejectsNegativeSeconds\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\TimeTest\\:\\:testFromSecondsAndNanosecondsReturnsTime\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/TimeTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\MajorTest\\:\\:testEqualsReturnsFalseWhenValueIsDifferent\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/MajorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\MajorTest\\:\\:testEqualsReturnsTrueWhenValueIsSame\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/MajorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\MajorTest\\:\\:testFromIntRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/MajorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\MajorTest\\:\\:testFromStringReturnsMajor\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/MajorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\MajorTest\\:\\:testIsOneOfReturnsFalseWhenAllValuesAreDifferent\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/MajorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\MajorTest\\:\\:testIsOneOfReturnsTrueWhenOneOfTheValuesIsSame\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/MajorTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\SeriesTest\\:\\:testCreateReturnsSeries\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/SeriesTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\SeriesTest\\:\\:testFromStringRejectsInvalidValue\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/SeriesTest.php + + - + message: "#^Method Ergebnis\\\\PHPUnit\\\\SlowTestDetector\\\\Test\\\\Unit\\\\Version\\\\SeriesTest\\:\\:testFromStringReturnsSeries\\(\\) has no return type specified\\.$#" + count: 1 + path: test/Unit/Version/SeriesTest.php + diff --git a/phpstan.neon b/phpstan.neon new file mode 100644 index 00000000..3039ec1b --- /dev/null +++ b/phpstan.neon @@ -0,0 +1,15 @@ +includes: + - phpstan-baseline.neon + +parameters: + inferPrivatePropertyTypeFromConstructor: true + + level: max + + paths: + - src/ + - test/ + - .php-cs-fixer.php + - rector.php + + tmpDir: .build/phpstan/ diff --git a/psalm-baseline.xml b/psalm-baseline.xml deleted file mode 100644 index f94ff2ba..00000000 --- a/psalm-baseline.xml +++ /dev/null @@ -1,859 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - seconds() * 1000 + $duration->nanoseconds() / 1000000]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ]]> - ]]> - ]]> - ]]> - ]]> - ]]> - ]]> - - - - - - - - - - ]]> - ]]> - ]]> - ]]> - ]]> - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - milliseconds * 1000]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/psalm.xml b/psalm.xml deleted file mode 100644 index d0440625..00000000 --- a/psalm.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/rector.php b/rector.php index 4677a4ed..a38436f2 100644 --- a/rector.php +++ b/rector.php @@ -12,7 +12,6 @@ */ use Rector\Config; -use Rector\PHPUnit; use Rector\ValueObject; return static function (Config\RectorConfig $rectorConfig): void { @@ -21,6 +20,8 @@ $rectorConfig->paths([ __DIR__ . '/src/', __DIR__ . '/test/', + __DIR__ . '/.php-cs-fixer.php', + __DIR__ . '/rector.php', ]); $rectorConfig->phpVersion(ValueObject\PhpVersion::PHP_70);