Skip to content

Commit

Permalink
Update PHPUnit compatibility to 11.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Slamdunk committed Oct 7, 2024
1 parent b08dd06 commit 4a76982
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
"phpunit/php-timer": "^7.0.1",
"phpunit/phpunit": "^11.4.0",
"sebastian/environment": "^7.2.0",
"symfony/console": "^6.4.11 || ^7.1.4",
"symfony/process": "^6.4.8 || ^7.1.3"
"symfony/console": "^6.4.11 || ^7.1.5",
"symfony/process": "^6.4.8 || ^7.1.5"
},
"require-dev": {
"ext-pcov": "*",
Expand All @@ -58,7 +58,7 @@
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.1",
"squizlabs/php_codesniffer": "^3.10.3",
"symfony/filesystem": "^6.4.9 || ^7.1.2"
"symfony/filesystem": "^6.4.9 || ^7.1.5"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion src/WrapperRunner/ApplicationForWrapperWorker.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use PHPUnit\Runner\TestSuiteLoader;
use PHPUnit\Runner\TestSuiteSorter;
use PHPUnit\Runner\Version;
use PHPUnit\TestRunner\IssueFilter;
use PHPUnit\TestRunner\TestResult\Facade as TestResultFacade;
use PHPUnit\TextUI\Configuration\Builder;
use PHPUnit\TextUI\Configuration\CodeCoverageFilterRegistry;
Expand Down Expand Up @@ -206,7 +207,7 @@ private function bootstrap(): void
if (isset($this->testdoxFile)) {
$this->testdoxResultCollector = new TestResultCollector(
EventFacade::instance(),
$this->configuration->source(),
new IssueFilter($this->configuration->source()),
);
}

Expand Down

0 comments on commit 4a76982

Please sign in to comment.