Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Sep 15, 2019
1 parent afbdc06 commit 3671ced
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/container.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

use App\Middleware\TranslatorMiddleware;
use App\Factory\LoggerFactory;
use App\Middleware\TranslatorMiddleware;
use App\Utility\Configuration;
use Cake\Database\Connection;
use League\Container\Container;
Expand Down
1 change: 0 additions & 1 deletion src/Action/CreateUserAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ final class CreateUserAction
*/
private $responder;


/**
* Constructor.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Utility/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace App\Utility;

/**
* Application Configuration
* Application Configuration.
*/
class Configuration
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Domain/User/UserCreatorRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testInsertUser(): void

$actual = $repository->insertUser([
'username' => 'admin',
'email' => '[email protected]'
'email' => '[email protected]',
]);

static::assertSame(1, $actual);
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase/Domain/User/UserCreatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function testCreateUser(): void

$actual = $service->createUser([
'username' => 'admin',
'email' => '[email protected]'
'email' => '[email protected]',
]);

static::assertSame(1, $actual);
Expand Down

0 comments on commit 3671ced

Please sign in to comment.