From 3dd63db6d24aab7ead87d00f5a4f975b050a729e Mon Sep 17 00:00:00 2001 From: kbond Date: Fri, 16 Aug 2024 01:16:43 +0000 Subject: [PATCH] bot: fix cs [skip ci] --- tests/HttpOptionsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/HttpOptionsTest.php b/tests/HttpOptionsTest.php index bccc5c9..bf9a0ab 100644 --- a/tests/HttpOptionsTest.php +++ b/tests/HttpOptionsTest.php @@ -196,7 +196,7 @@ public function json_ajax_constructor_with_no_value(): void */ public function create_with_self(): void { - $options = new class() extends HttpOptions {}; + $options = new class extends HttpOptions {}; $this->assertSame($options, HttpOptions::create($options)); }