File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ^7.1 || ^8.0" ,
13
+ "php" : " ^7.4 || ^8.0" ,
14
14
"ext-simplexml" : " *" ,
15
15
"composer/semver" : " ^1.4 || ^2.0 || ^3.0" ,
16
16
"composer/package-versions-deprecated" : " ^1.10" ,
17
- "vimeo/psalm" : " dev-master || dev-4.x || ^4.7.1 || ^5@beta || ^5.0"
17
+ "vimeo/psalm" : " dev-master || ^5@beta || ^5.0"
18
18
},
19
19
"conflict" : {
20
20
"phpunit/phpunit" : " <7.5"
Original file line number Diff line number Diff line change @@ -387,6 +387,7 @@ static function (
387
387
}
388
388
};
389
389
390
+ /** @psalm-suppress DeprecatedClass Will be removed soon */
390
391
/** @var Type\Atomic\TArray|Type\Atomic\TKeyedArray|Type\Atomic\TList $dataset_type */
391
392
$ dataset_type = self ::getAtomics ($ provider_return_type ->type_params [1 ])['array ' ];
392
393
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Feature: Prophecy
74
74
When I run Psalm
75
75
Then I see no errors
76
76
77
- Scenario : Argument::that() only accepts callable with boolean return type [Psalm 4]
77
+ Scenario : Argument::that() only accepts callable with boolean return type
78
78
Given I have the following code
79
79
"""
80
80
class MyTestCase extends TestCase
@@ -87,7 +87,6 @@ Feature: Prophecy
87
87
}
88
88
}
89
89
"""
90
- And I have Psalm older than "5.0" (because of "changed issue type" )
91
90
When I run Psalm
92
91
Then I see these errors
93
92
| Type | Message |
Original file line number Diff line number Diff line change @@ -612,7 +612,7 @@ Feature: TestCase
612
612
When I run Psalm
613
613
Then I see no errors
614
614
615
- Scenario : Provider omitting offsets is fine when test method has defaults for those params (specified as constants) [Psalm 4]
615
+ Scenario : Provider omitting offsets is fine when test method has defaults for those params (specified as constants)
616
616
Given I have the following code
617
617
"""
618
618
class MyTestCase extends TestCase
@@ -632,7 +632,6 @@ Feature: TestCase
632
632
}
633
633
}
634
634
"""
635
- And I have Psalm older than "5.0" (because of "sealed shapes" )
636
635
When I run Psalm
637
636
Then I see no errors
638
637
You can’t perform that action at this time.
0 commit comments