@@ -4,14 +4,14 @@ discard block |
||
4 | 4 | use Illuminate\Support\Carbon; |
5 | 5 | use MongoDB\BSON\UTCDateTime; |
6 | 6 | |
7 | -if (! function_exists('analytics')) { |
|
7 | +if (!function_exists('analytics')) { |
|
8 | 8 | function analytics(): APAnalytics |
9 | 9 | { |
10 | 10 | return app(APAnalytics::class); |
11 | 11 | } |
12 | 12 | } |
13 | 13 | |
14 | -if (! function_exists('trackEvent')) { |
|
14 | +if (!function_exists('trackEvent')) { |
|
15 | 15 | /** |
16 | 16 | * Access event dispatch of event tracker direct. |
17 | 17 | * @param mixed $event |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | } |
28 | 28 | |
29 | -if (! function_exists('showEvents')) { |
|
29 | +if (!function_exists('showEvents')) { |
|
30 | 30 | /** |
31 | 31 | * Access event dispatch of event tracker direct. |
32 | 32 | * @param mixed $event |
@@ -43,14 +43,14 @@ discard block |
||
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | -if (! function_exists('is_countable')) { |
|
46 | +if (!function_exists('is_countable')) { |
|
47 | 47 | function is_countable($c) |
48 | 48 | { |
49 | 49 | return is_array($c) || $c instanceof Countable; |
50 | 50 | } |
51 | 51 | } |
52 | 52 | |
53 | -if (! function_exists('mongoTime')) { |
|
53 | +if (!function_exists('mongoTime')) { |
|
54 | 54 | /** |
55 | 55 | * Returns time in MongoDb Time. |
56 | 56 | * @param null|mixed $time |
@@ -23,7 +23,7 @@ |
||
23 | 23 | |
24 | 24 | //$this->app->register(APAnalyticsEventServiceProvider::class); |
25 | 25 | |
26 | - $this->app->singleton('apanalytics', function () { |
|
26 | + $this->app->singleton('apanalytics', function() { |
|
27 | 27 | return new APAnalytics(); |
28 | 28 | }); |
29 | 29 | } |
@@ -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 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $intervalFormat = '%Y-%m'; |
101 | 101 | } |
102 | 102 | |
103 | - $aggregate[] = [ |
|
103 | + $aggregate[] = [ |
|
104 | 104 | '$group' => [ |
105 | 105 | '_id' => [ |
106 | 106 | '$dateToString' => ['date' => '$created_at', 'format' => $intervalFormat] |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | ]; |
126 | 126 | } |
127 | 127 | |
128 | - $data = $model::raw(function ($collection) use ($matchArray, $interval, $aggregate) { |
|
128 | + $data = $model::raw(function($collection) use ($matchArray, $interval, $aggregate) { |
|
129 | 129 | if ($interval == 'count') { |
130 | 130 | return $collection->count($matchArray); |
131 | 131 | } |
@@ -147,11 +147,11 @@ discard block |
||
147 | 147 | */ |
148 | 148 | private function toModels($data, $model = null) |
149 | 149 | { |
150 | - if (! $model) { |
|
150 | + if (!$model) { |
|
151 | 151 | $model = '\Jenssegers\Mongodb\Eloquent\Model'; |
152 | 152 | } |
153 | 153 | |
154 | - if (! class_exists($model)) { |
|
154 | + if (!class_exists($model)) { |
|
155 | 155 | throw new InvalidArgumentException("Model {$model} does not exist."); |
156 | 156 | } |
157 | 157 |