1
0
Fork 0

Update phpstan config

pull/10547/head
Jordi Boggiano 2022-02-21 13:49:26 +01:00
parent e9b60580f5
commit fb854df124
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
2 changed files with 2 additions and 6 deletions

View File

@ -31,15 +31,11 @@ parameters:
- '~^Undefined variable: \$vendorDir$~' - '~^Undefined variable: \$vendorDir$~'
- '~^Undefined variable: \$baseDir$~' - '~^Undefined variable: \$baseDir$~'
# variable defined in eval
- '~^Undefined variable: \$res$~'
# we don't have different constructors for parent/child # we don't have different constructors for parent/child
- '~^Unsafe usage of new static\(\)\.$~' - '~^Unsafe usage of new static\(\)\.$~'
# Ignore some irrelevant errors in test files # Ignore some irrelevant errors in test files
- '~Method Composer\\Test\\[^:]+::(setUp(BeforeClass)?|tearDown(AfterClass)?|test[^(]+)\(\) has no return type specified.~' - '~Method Composer\\Test\\[^:]+::(data\w+|provide\w+|\w+?Provider)\(\) (has no return type specified.|return type has no value type specified in iterable type array.)~'
- '~Method Composer\\Test\\[^:]+::(data\w+|provide\w+|\w+?Provider)\(\) has no return type specified.~'
# PHPUnit assertions as instance methods # PHPUnit assertions as instance methods
- '~Dynamic call to static method PHPUnit\\Framework\\Assert::\w+\(\)~' - '~Dynamic call to static method PHPUnit\\Framework\\Assert::\w+\(\)~'

View File

@ -309,7 +309,7 @@ class InstallerTest extends TestCase
{ {
if ($condition) { if ($condition) {
eval('$res = '.$condition.';'); eval('$res = '.$condition.';');
if (!$res) { if (!$res) { // @phpstan-ignore-line
$this->markTestSkipped($condition); $this->markTestSkipped($condition);
} }
} }