From 23a629b1aecd74491d155557fedd02eaed35037b Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Fri, 4 Nov 2022 18:31:51 +0500 Subject: [PATCH] return style --- tests/ResourceSyncingTest.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tests/ResourceSyncingTest.php b/tests/ResourceSyncingTest.php index 37bf5f8b..576845a6 100644 --- a/tests/ResourceSyncingTest.php +++ b/tests/ResourceSyncingTest.php @@ -932,13 +932,12 @@ class CentralUserProvidingDefaultValues extends CentralUser { public function getSyncedCreationAttributes(): array { - return - [ - 'name' => 'Default User', - 'email' => 'default@localhost', - 'password' => 'password', - 'role' => 'admin', - ]; + return [ + 'name' => 'Default User', + 'email' => 'default@localhost', + 'password' => 'password', + 'role' => 'admin', + ]; } }