Skip to content

Commit

Permalink
Update all non-major dependencies (#921)
Browse files Browse the repository at this point in the history
* Update all non-major dependencies

| datasource | package                 | from  | to    |
| ---------- | ----------------------- | ----- | ----- |
| packagist  | phpstan/phpstan         | 2.0.3 | 2.0.4 |
| packagist  | phpstan/phpstan-phpunit | 2.0.1 | 2.0.2 |

* SA fix

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Filippo Tessarotto <[email protected]>
  • Loading branch information
renovate[bot] and Slamdunk authored Dec 18, 2024
1 parent 5503d00 commit e09083e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
"ext-pcov": "*",
"ext-posix": "*",
"doctrine/coding-standard": "^12.0.0",
"phpstan/phpstan": "^2.0.3",
"phpstan/phpstan": "^2.0.4",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-phpunit": "^2.0.1",
"phpstan/phpstan-strict-rules": "^2",
"phpstan/phpstan-phpunit": "^2.0.2",
"phpstan/phpstan-strict-rules": "^2.0.1",
"squizlabs/php_codesniffer": "^3.11.2",
"symfony/filesystem": "^6.4.13 || ^7.2.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/WrapperRunner/SuiteLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private function loadFiles(TestSuite $testSuite): Generator
if ($test instanceof TestCase) {
$refClass = new ReflectionClass($test);
$filename = $refClass->getFileName();
assert(is_string($filename) && $filename !== '');
assert(is_string($filename));
$filename = $this->stripCwd($filename);

yield $filename => $test;
Expand Down

0 comments on commit e09083e

Please sign in to comment.