@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function get($array, $key, $default = null) |
29 | 29 | { |
30 | - if (! static::accessible($array)) { |
|
30 | + if (!static::accessible($array)) { |
|
31 | 31 | return value($default); |
32 | 32 | } |
33 | 33 | |
@@ -136,6 +136,6 @@ discard block |
||
136 | 136 | return []; |
137 | 137 | } |
138 | 138 | |
139 | - return ! is_array($value) ? [$value] : $value; |
|
139 | + return !is_array($value) ? [$value] : $value; |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | \ No newline at end of file |