@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | $this->collection = $collection; |
| 27 | 27 | $this->queryType = Query::TYPE_FIND; |
| 28 | 28 | $this->expression = new Expression(); |
| 29 | - $this->options = []; |
|
| 29 | + $this->options = [ ]; |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | $this->setQueryOption('projection', array_fill_keys($projection, 1)); |
| 143 | 143 | |
| 144 | 144 | if (!in_array('_id', $projection)) { |
| 145 | - $this->options['projection']['_id'] = -1; |
|
| 145 | + $this->options[ 'projection' ][ '_id' ] = -1; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | return $this; |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | */ |
| 157 | 157 | public function setQueryOption(string $option, $value) |
| 158 | 158 | { |
| 159 | - $this->options[$option] = $value; |
|
| 159 | + $this->options[ $option ] = $value; |
|
| 160 | 160 | |
| 161 | 161 | return $this; |
| 162 | 162 | } |
@@ -33,9 +33,9 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public function __construct( |
| 35 | 35 | Collection $collection, |
| 36 | - int $type=self::TYPE_FIND, |
|
| 37 | - array $querySettings=[], |
|
| 38 | - array $options=[] |
|
| 36 | + int $type = self::TYPE_FIND, |
|
| 37 | + array $querySettings = [ ], |
|
| 38 | + array $options = [ ] |
|
| 39 | 39 | ) { |
| 40 | 40 | $this->collection = $collection; |
| 41 | 41 | $this->querySettings = $querySettings; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | public function execute() |
| 52 | 52 | { |
| 53 | - switch($this->type) { |
|
| 53 | + switch ($this->type) { |
|
| 54 | 54 | case self::TYPE_FIND: |
| 55 | 55 | return $this->collection->find($this->querySettings, $this->options); |
| 56 | 56 | break; |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | public function __construct() |
| 17 | 17 | { |
| 18 | - $this->filters = []; |
|
| 18 | + $this->filters = [ ]; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -27,8 +27,8 @@ discard block |
||
| 27 | 27 | { |
| 28 | 28 | $this->prepareFilterIndex('$and'); |
| 29 | 29 | |
| 30 | - $this->filters['$and'] = array_merge( |
|
| 31 | - $this->filters['$and'], |
|
| 30 | + $this->filters[ '$and' ] = array_merge( |
|
| 31 | + $this->filters[ '$and' ], |
|
| 32 | 32 | $this->mapExpressions(...func_get_args()) |
| 33 | 33 | ); |
| 34 | 34 | |
@@ -44,8 +44,8 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $this->prepareFilterIndex('$or'); |
| 46 | 46 | |
| 47 | - $this->filters['$or'] = array_merge( |
|
| 48 | - $this->filters['$or'], |
|
| 47 | + $this->filters[ '$or' ] = array_merge( |
|
| 48 | + $this->filters[ '$or' ], |
|
| 49 | 49 | $this->mapExpressions(...func_get_args()) |
| 50 | 50 | ); |
| 51 | 51 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | { |
| 63 | 63 | $this->prepareFilterIndex($field); |
| 64 | 64 | |
| 65 | - $this->filters[$field] = $this->operationExpression('$eq', $expression); |
|
| 65 | + $this->filters[ $field ] = $this->operationExpression('$eq', $expression); |
|
| 66 | 66 | |
| 67 | 67 | return $this; |
| 68 | 68 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | { |
| 78 | 78 | $this->prepareFilterIndex($field); |
| 79 | 79 | |
| 80 | - $this->filters[$field] = $this->operationExpression('$ne', $expression); |
|
| 80 | + $this->filters[ $field ] = $this->operationExpression('$ne', $expression); |
|
| 81 | 81 | |
| 82 | 82 | return $this; |
| 83 | 83 | } |
@@ -95,8 +95,8 @@ discard block |
||
| 95 | 95 | */ |
| 96 | 96 | private function prepareFilterIndex(string $operator) |
| 97 | 97 | { |
| 98 | - if (!isset($this->filters[$operator])) { |
|
| 99 | - $this->filters[$operator] = []; |
|
| 98 | + if (!isset($this->filters[ $operator ])) { |
|
| 99 | + $this->filters[ $operator ] = [ ]; |
|
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | private function mapExpressions($expressions): array |
| 109 | 109 | { |
| 110 | 110 | return array_map( |
| 111 | - function ($expression) { |
|
| 111 | + function($expression) { |
|
| 112 | 112 | return $expression instanceof Expression ? $expression->getExpressionFilters() : $expression; |
| 113 | 113 | }, |
| 114 | 114 | func_get_args() |
@@ -125,6 +125,6 @@ discard block |
||
| 125 | 125 | { |
| 126 | 126 | $filter = $expression instanceof Expression ? $expression->getExpressionFilters() : $expression; |
| 127 | 127 | |
| 128 | - return [$operation => $filter]; |
|
| 128 | + return [ $operation => $filter ]; |
|
| 129 | 129 | } |
| 130 | 130 | } |