From 3671cedca243ce7b0740525b37ca6181d66b220b Mon Sep 17 00:00:00 2001 From: odan Date: Sun, 15 Sep 2019 10:43:35 +0200 Subject: [PATCH] Fix cs --- config/container.php | 2 +- src/Action/CreateUserAction.php | 1 - src/Utility/Configuration.php | 2 +- tests/TestCase/Domain/User/UserCreatorRepositoryTest.php | 2 +- tests/TestCase/Domain/User/UserCreatorTest.php | 2 +- 5 files changed, 4 insertions(+), 5 deletions(-) diff --git a/config/container.php b/config/container.php index f6d4d5319..b63c21294 100644 --- a/config/container.php +++ b/config/container.php @@ -1,7 +1,7 @@ insertUser([ 'username' => 'admin', - 'email' => 'mail@example.com' + 'email' => 'mail@example.com', ]); static::assertSame(1, $actual); diff --git a/tests/TestCase/Domain/User/UserCreatorTest.php b/tests/TestCase/Domain/User/UserCreatorTest.php index d7cdbe274..b189fa2ff 100644 --- a/tests/TestCase/Domain/User/UserCreatorTest.php +++ b/tests/TestCase/Domain/User/UserCreatorTest.php @@ -40,7 +40,7 @@ public function testCreateUser(): void $actual = $service->createUser([ 'username' => 'admin', - 'email' => 'mail@example.com' + 'email' => 'mail@example.com', ]); static::assertSame(1, $actual);