Skip to content

Commit 180a7b6

Browse files
committed
Update to new phpstan-ignore multiple identifier format
1 parent 429f3c0 commit 180a7b6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/Unit/Country/CountryAlpha2Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
7171
{
7272
$this->expectException(InvalidArgumentException::class);
7373
$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 */
7575
CountryAlpha2::Netherlands->isMemberOf('foo');
7676
}
7777

tests/Unit/Country/CountryAlpha3Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
7171
{
7272
$this->expectException(InvalidArgumentException::class);
7373
$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 */
7575
CountryAlpha3::Netherlands->isMemberOf('foo');
7676
}
7777

tests/Unit/Country/CountryNameTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
6565
{
6666
$this->expectException(InvalidArgumentException::class);
6767
$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 */
6969
CountryName::Netherlands->isMemberOf('foo');
7070
}
7171

tests/Unit/Country/CountryNumericTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function testIsMemberOfThrowsExceptionIfInvalidFQNSupplied(): void
103103
{
104104
$this->expectException(InvalidArgumentException::class);
105105
$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 */
107107
CountryNumeric::Netherlands->isMemberOf('foo');
108108
}
109109

0 commit comments

Comments
 (0)