From 39cbb231270aeb2b3cf82686e503c7eb3e41c084 Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Wed, 29 Mar 2023 00:33:26 +0200
Subject: [PATCH] CS: always use parentheses for class instantiation

---
 tests/phpunit/tests/functions/getNonCachedIds.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/phpunit/tests/functions/getNonCachedIds.php b/tests/phpunit/tests/functions/getNonCachedIds.php
index d8df0e11a6..07943bbdc8 100644
--- a/tests/phpunit/tests/functions/getNonCachedIds.php
+++ b/tests/phpunit/tests/functions/getNonCachedIds.php
@@ -97,7 +97,7 @@ class Tests_Functions_GetNonCachedIds extends WP_UnitTestCase {
 			'empty string' => array( '' ),
 			'array'        => array( array( 1 ) ),
 			'empty array'  => array( array() ),
-			'stdClass'     => array( new stdClass ),
+			'stdClass'     => array( new stdClass() ),
 		);
 	}
 }
-- 
2.41.0.windows.1

