From a0dd2a1d956f85811f9c667a1744d822fb2c63d8 Mon Sep 17 00:00:00 2001 From: Rob Bast Date: Wed, 7 Sep 2022 11:14:19 +0200 Subject: [PATCH] fix phpstan issue --- tests/ISO3166Test.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ISO3166Test.php b/tests/ISO3166Test.php index 4ebfc5d..93ee03f 100644 --- a/tests/ISO3166Test.php +++ b/tests/ISO3166Test.php @@ -249,6 +249,7 @@ public function testListBy(): void public function testCountryNameCompare(): void { $country = (new ISO3166)->name('CÔTE D\'IVOIRE'); - $this->assertEquals('CIV', $country['alpha3']); + + static::assertEquals('CIV', $country['alpha3']); } }