@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $patterns = $this->_split(':', '(', ')', substr($pattern, 1, -1)); |
60 | 60 | $last_pattern = array_pop($patterns); |
61 | 61 | |
62 | - if(! is_array($value)) { |
|
62 | + if(!is_array($value)) { |
|
63 | 63 | return false; |
64 | 64 | } |
65 | 65 | |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | |
127 | 127 | protected function _recurse($value, $patterns) |
128 | 128 | { |
129 | - if(! is_array($value) || count($patterns) > count($value)) { |
|
129 | + if(!is_array($value) || count($patterns) > count($value)) { |
|
130 | 130 | return false; |
131 | 131 | } |
132 | 132 |