1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Prevent tests in PHP 7.1

This commit is contained in:
Brown 2019-03-05 18:27:25 -05:00
parent cece1def30
commit ae69695f89
5 changed files with 12 additions and 12 deletions

View File

@ -389,7 +389,7 @@ class PropertyAssignmentAnalyzer
),
$statements_analyzer->getSuppressedIssues()
)) {
return false;
// fall through
}
} else {
if (IssueBuffer::accepts(
@ -400,7 +400,7 @@ class PropertyAssignmentAnalyzer
),
$statements_analyzer->getSuppressedIssues()
)) {
return false;
// fall through
}
}
@ -814,7 +814,7 @@ class PropertyAssignmentAnalyzer
),
$statements_analyzer->getSuppressedIssues()
)) {
return false;
// fall through
}
return;

View File

@ -1316,7 +1316,7 @@ class MethodCallAnalyzer extends \Psalm\Internal\Analyzer\Statements\Expression\
$statements_analyzer->getSuppressedIssues()
)
) {
return false;
// fall through
}
// If a `@property` annotation is set, the type of the value passed to the
@ -1387,7 +1387,7 @@ class MethodCallAnalyzer extends \Psalm\Internal\Analyzer\Statements\Expression\
),
$statements_analyzer->getSuppressedIssues()
)) {
return false;
// fall through
}
} else {
if (IssueBuffer::accepts(
@ -1400,7 +1400,7 @@ class MethodCallAnalyzer extends \Psalm\Internal\Analyzer\Statements\Expression\
),
$statements_analyzer->getSuppressedIssues()
)) {
return false;
// fall through
}
}
}
@ -1421,7 +1421,7 @@ class MethodCallAnalyzer extends \Psalm\Internal\Analyzer\Statements\Expression\
$statements_analyzer->getSuppressedIssues()
)
) {
return false;
// fall through
}
if (isset($class_storage->pseudo_property_get_types['$' . $prop_name])) {

View File

@ -846,7 +846,7 @@ class PropertyFetchAnalyzer
),
$statements_analyzer->getSuppressedIssues()
)) {
return false;
// fall through
}
return;

View File

@ -757,7 +757,7 @@ class CallableTest extends TestCase
}
}'
],
'publicCallableFromInside' => [
'PHP71-publicCallableFromInside' => [
'<?php
class Base {
public function publicMethod() : void {}
@ -769,7 +769,7 @@ class CallableTest extends TestCase
}
}',
],
'protectedCallableFromInside' => [
'PHP71-protectedCallableFromInside' => [
'<?php
class Base {
protected function protectedMethod() : void {}
@ -1258,7 +1258,7 @@ class CallableTest extends TestCase
array_map(["two", "three"], ["one", "two"]);',
'error_message' => 'InvalidArgument'
],
'privateCallable' => [
'PHP71-privateCallable' => [
'<?php
class Base {
private function privateMethod() : void {}

View File

@ -1121,7 +1121,7 @@ class TemporaryUpdateTest extends \Psalm\Tests\TestCase
}',
],
],
'error_positions' => [[306], [306, 452]],
'error_positions' => [[306], [306, 452, 452]],
],
'addPropertyDocblock' => [
[