From 16e7a6cf5868d7f94174854fd5402f8bfb84f1e3 Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 26 Jul 2024 16:10:44 +0900 Subject: [PATCH] test: add @psalm-suppress Error: tests/system/CodeIgniterTest.php:138:33: UndefinedClass: Class, interface or enum named Tests\Support\Errors does not exist (see https://psalm.dev/019) --- tests/system/CodeIgniterTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/system/CodeIgniterTest.php b/tests/system/CodeIgniterTest.php index e65ba03c25c0..fca72bf10583 100644 --- a/tests/system/CodeIgniterTest.php +++ b/tests/system/CodeIgniterTest.php @@ -126,6 +126,9 @@ public function testRunClosureRoute(): void $this->assertStringContainsString('You want to see "about" page.', $output); } + /** + * @psalm-suppress UndefinedClass + */ public function testRun404Override(): void { $_SERVER['REQUEST_METHOD'] = 'GET';