You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feature #678 Symfony 8 support follow-up, PHPUnit 11 (Kocal)
This PR was squashed before being merged into the 2.0.x-dev branch.
Discussion
----------
Symfony 8 support follow-up, PHPUnit 11
IIRC the CI was already broken before this PR
Blockers:
- php-webdriver/php-webdriver#1134
Commits
-------
814b155 Symfony 8 support follow-up, PHPUnit 11
Copy file name to clipboardExpand all lines: phpstan.neon
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,16 @@ parameters:
10
10
- tests/DummyKernel.php
11
11
# There are lots of missing phpunit classes since we are supporting multiple versions
12
12
- src/ServerExtension.php
13
+
reportUnmatchedIgnoredErrors:false
13
14
ignoreErrors:
14
15
# False positive
15
16
- '#Call to an undefined method ReflectionType::getName\(\)\.#'
16
17
# False positive : assertNotEmpty assert that count() !== 0 on Countable
17
18
- '#Call to static method PHPUnit\\Framework\\Assert::assert(Not)?Empty\(\) with Symfony\\Component\\DomCrawler\\Crawler will always evaluate to (true|false)\.#'
18
19
# False positive : getStatus exists for PHPUnit < 10 only
19
20
- '#Call to function method_exists\(\) with \$this\(Symfony\\Component\\Panther\\PantherTestCase\) and ''getStatus'' will always evaluate to true\.#'
21
+
# False positive : status exists for PHPUnit > 10 only
22
+
- '#Call to function method_exists\(\) with \$this\(Symfony\\Component\\Panther\\PantherTestCase\) and ''status'' will always evaluate to true\.#'
20
23
# False positive : PantherTestCase has no getClient method when symfony/framework-bundle (and WebTestCase) are not available
21
24
- '#Call to function method_exists\(\) with ''Symfony\\\\Component\\\\Panther\\\\PantherTestCase'' and ''getClient'' will always evaluate to true\.#'
0 commit comments