Completed
Push — master ( 9340bd...1c40df )
by Park Jong-Hun
05:35
created
core/Utils/ArrayUtils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     public static function find(array $arr, $str)
8 8
     {
9 9
         foreach ($arr as $item) {
10
-            if(self::isMatchedString($item, $str)) {
10
+            if (self::isMatchedString($item, $str)) {
11 11
                 return $item;
12 12
             }
13 13
         }
Please login to merge, or discard this patch.
app/Bootstrap/DispatcherBootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     {
49 49
         $viewClassName = get_class($viewRenderer->resolveView($controllerResult));
50 50
 
51
-        if(array_search($viewClassName, $this->env['viewPrefix']['applyView']) === false) {
51
+        if (array_search($viewClassName, $this->env['viewPrefix']['applyView']) === false) {
52 52
             return $controllerResult;
53 53
         }
54 54
 
Please login to merge, or discard this patch.