@@ -150,7 +150,7 @@ |
||
150 | 150 | */ |
151 | 151 | public function query(array $query = []) |
152 | 152 | { |
153 | - array_walk_recursive($query, function (&$value) { |
|
153 | + array_walk_recursive($query, function(&$value) { |
|
154 | 154 | if ($value instanceof \DateTime) { |
155 | 155 | //MongoDate is always UTC, which is good :) |
156 | 156 | $value = new \MongoDate($value->getTimestamp()); |
@@ -241,7 +241,7 @@ |
||
241 | 241 | if ( |
242 | 242 | is_array($type) |
243 | 243 | && is_scalar($type[0]) |
244 | - && $filter = $this->mutators->getMutators('array::' . $type[0]) |
|
244 | + && $filter = $this->mutators->getMutators('array::'.$type[0]) |
|
245 | 245 | ) { |
246 | 246 | //Mutator associated to array with specified type |
247 | 247 | $resolved += $filter; |