File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
71
71
{
72
72
$ this ->expectException (InvalidArgumentException::class);
73
73
$ this ->expectExceptionMessage ('Argument $groupFQN should be a FQN of a class that implements the groupInterface, "foo" given ' );
74
- /** @phpstan-ignore argument.type missingType.checkedException */
74
+ /** @phpstan-ignore argument.type, missingType.checkedException */
75
75
CountryAlpha2::Netherlands->isMemberOf ('foo ' );
76
76
}
77
77
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
71
71
{
72
72
$ this ->expectException (InvalidArgumentException::class);
73
73
$ this ->expectExceptionMessage ('Argument $groupFQN should be a FQN of a class that implements the groupInterface, "foo" given ' );
74
- /** @phpstan-ignore argument.type missingType.checkedException */
74
+ /** @phpstan-ignore argument.type, missingType.checkedException */
75
75
CountryAlpha3::Netherlands->isMemberOf ('foo ' );
76
76
}
77
77
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
65
65
{
66
66
$ this ->expectException (InvalidArgumentException::class);
67
67
$ this ->expectExceptionMessage ('Argument $groupFQN should be a FQN of a class that implements the groupInterface, "foo" given ' );
68
- /** @phpstan-ignore argument.type missingType.checkedException */
68
+ /** @phpstan-ignore argument.type, missingType.checkedException */
69
69
CountryName::Netherlands->isMemberOf ('foo ' );
70
70
}
71
71
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
103
103
{
104
104
$ this ->expectException (InvalidArgumentException::class);
105
105
$ this ->expectExceptionMessage ('Argument $groupFQN should be a FQN of a class that implements the groupInterface, "foo" given ' );
106
- /** @phpstan-ignore argument.type missingType.checkedException */
106
+ /** @phpstan-ignore argument.type, missingType.checkedException */
107
107
CountryNumeric::Netherlands->isMemberOf ('foo ' );
108
108
}
109
109
You can’t perform that action at this time.
0 commit comments