From 79c92da8c14de61dccc015f04c3900aac4bd4179 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 24 Apr 2019 11:01:37 +0200 Subject: Formatting ```bash php-cs-fixer fix --allow-risky=yes --rules=@PSR2,psr4,mb_str_functions.php_unit_construct,php_unit_ordered_covers,trailing_comma_in_multiline_array --rules='{"array_syntax": {"syntax":"short"}}' [tests/|src/] ``` --- tests/Unit/Models/User/UserTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/Unit/Models/User/UserTest.php') diff --git a/tests/Unit/Models/User/UserTest.php b/tests/Unit/Models/User/UserTest.php index 478c02dd..0e17d137 100644 --- a/tests/Unit/Models/User/UserTest.php +++ b/tests/Unit/Models/User/UserTest.php @@ -37,14 +37,14 @@ class UserTest extends TestCase 'dect' => '1234567', 'email' => 'foo@bar.batz', 'mobile' => '1234/12341234', - ] + ], ], [ PersonalData::class, 'personalData', [ - 'first_name' => 'Foo' - ] + 'first_name' => 'Foo', + ], ], [ Settings::class, @@ -52,14 +52,14 @@ class UserTest extends TestCase [ 'language' => 'de_DE', 'theme' => 4, - ] + ], ], [ State::class, 'state', [ 'force_active' => true, - ] + ], ], ]; } -- cgit v1.2.3-54-g00ecf