Test Failed
Push — master ( 57f449...4c5775 )
by Park Jong-Hun
06:46
created
app/Auth/AccountManager/DatabaseAccountManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     {
37 37
         $user = $this->getUserEntity($accountId);
38 38
 
39
-        if($user === null) {
39
+        if ($user === null) {
40 40
             return null;
41 41
         }
42 42
 
Please login to merge, or discard this patch.
app/Auth/AccountManager/FileBaseAccountManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function getAccountById($accountId)
36 36
     {
37
-        if(isset($this->accounts[$accountId]) === false) {
37
+        if (isset($this->accounts[$accountId]) === false) {
38 38
             return null;
39 39
         }
40 40
 
Please login to merge, or discard this patch.
config/event.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@
 block discarded – undo
6 6
             'before' => 'App\\EventListener\\Auth\\PermissionVerificationListener.validate'
7 7
         ],
8 8
         'Test.event' => [
9
-            'before' => function () {
9
+            'before' => function() {
10 10
                 echo '<p>before Hook!</p>';
11 11
             },
12
-            'after' => function () {
12
+            'after' => function() {
13 13
                 echo '<p>after Hook!</p>';
14 14
             }
15 15
         ]
Please login to merge, or discard this patch.
core/Event/EventListenerRegister.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 
48 48
     private function getEventListenerProc($handler)
49 49
     {
50
-        return function (ParameterMap $parameterMap) use ($handler) {
50
+        return function(ParameterMap $parameterMap) use ($handler) {
51 51
             /** @var ProcInterface */
52 52
             $proc = ProcFactory::getProc($handler);
53 53
             if ($proc instanceof MethodProc) {
Please login to merge, or discard this patch.
core/ErrorReporter/ErrorReporterService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     private function registerErrorReporters()
59 59
     {
60
-        set_exception_handler(function ($exception) {
60
+        set_exception_handler(function($exception) {
61 61
             /**
62 62
              * @var ErrorReporterInterface $reporter
63 63
              */
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             }
73 73
         });
74 74
 
75
-        set_error_handler(function ($errno, $errstr, $errfile, $errline, array $errcontext) {
75
+        set_error_handler(function($errno, $errstr, $errfile, $errline, array $errcontext) {
76 76
             throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
77 77
         });
78 78
     }
Please login to merge, or discard this patch.