Passed
Push — master ( 62f29c...5b423f )
by Hong
01:42
created
src/Resolver/DefaultResolver.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @package   Phoole\Route
8 8
  * @copyright Copyright (c) 2019 Hong Zhang
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Phoole\Route\Resolver;
13 13
 
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
      */
91 91
     protected function appendSuffix(array $notCallable): callable
92 92
     {
93
-        $controller = $this->namespace . '\\' . $notCallable[0] . $this->controllerSuffix;
94
-        $action = $notCallable[1] . $this->actionSuffix;
93
+        $controller = $this->namespace.'\\'.$notCallable[0].$this->controllerSuffix;
94
+        $action = $notCallable[1].$this->actionSuffix;
95 95
         return [new $controller(), $action];
96 96
     }
97 97
 
Please login to merge, or discard this patch.