@@ -7,7 +7,7 @@ |
||
| 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 | } |
@@ -48,7 +48,7 @@ |
||
| 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 | |