Coding Standards: Always use parentheses when instantiating an object.

Note: This will be enforced by WPCS 3.0.0.

Props jrf.
See #56791.

git-svn-id: https://develop.svn.wordpress.org/trunk@54891 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2022-11-29 15:49:49 +00:00
parent 6821cb07ef
commit e50c65caf4
86 changed files with 166 additions and 166 deletions
+1 -1
View File
@@ -401,7 +401,7 @@ class Tests_Meta extends WP_UnitTestCase {
* @ticket 15030
*/
public function test_get_metadata_with_empty_key_object_value() {
$data = new stdClass;
$data = new stdClass();
$data->foo = 'bar';
$value = serialize( $data );
add_metadata( 'user', $this->author->ID, 'foo', $data );