@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | $model = $this->namespace.studly_case(str_singular($collection)).'Analytic'; |
| 63 | 63 | |
| 64 | - if (! class_exists($model)) { |
|
| 64 | + if (!class_exists($model)) { |
|
| 65 | 65 | throw new InvalidArgumentException("Model {$model} does not exist."); |
| 66 | 66 | } |
| 67 | 67 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | $intervalFormat = '%Y-%m'; |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - $aggregate[] = [ |
|
| 107 | + $aggregate[] = [ |
|
| 108 | 108 | '$group' => [ |
| 109 | 109 | '_id' => [ |
| 110 | 110 | '$dateToString' => ['date' => '$created_at', 'format' => $intervalFormat], |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | ]; |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | - $data = $model::raw(function ($collection) use ($matchArray, $interval, $aggregate) { |
|
| 132 | + $data = $model::raw(function($collection) use ($matchArray, $interval, $aggregate) { |
|
| 133 | 133 | if ($interval == 'count') { |
| 134 | 134 | return $collection->count($matchArray); |
| 135 | 135 | } |
@@ -151,11 +151,11 @@ discard block |
||
| 151 | 151 | */ |
| 152 | 152 | private function toModels($data, $model = null) |
| 153 | 153 | { |
| 154 | - if (! $model) { |
|
| 154 | + if (!$model) { |
|
| 155 | 155 | $model = '\Jenssegers\Mongodb\Eloquent\Model'; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - if (! class_exists($model)) { |
|
| 158 | + if (!class_exists($model)) { |
|
| 159 | 159 | throw new InvalidArgumentException("Model {$model} does not exist."); |
| 160 | 160 | } |
| 161 | 161 | |