From 56ba3df382a5c9fcd794e008a3edb106fb4df746 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Thu, 30 May 2024 22:48:09 +0700 Subject: [PATCH] chore: remove unused path parameter on PhpStreamWrapper::stream_open() --- system/Test/PhpStreamWrapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Test/PhpStreamWrapper.php b/system/Test/PhpStreamWrapper.php index 980d5424ab62..a6be8dd1329c 100644 --- a/system/Test/PhpStreamWrapper.php +++ b/system/Test/PhpStreamWrapper.php @@ -46,7 +46,7 @@ public static function restore() stream_wrapper_restore('php'); } - public function stream_open(string $path): bool + public function stream_open(): bool { return true; }