@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | public function setAggregator(string $aggregator, array $models): void |
40 | 40 | { |
41 | 41 | foreach ($models as $model) { |
42 | - if (! array_key_exists($model, $this->aggregators)) { |
|
42 | + if ( ! array_key_exists($model, $this->aggregators)) { |
|
43 | 43 | $this->aggregators[$model] = []; |
44 | 44 | } |
45 | 45 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | { |
55 | 55 | $class = get_class($model); |
56 | 56 | |
57 | - if (! array_key_exists($class, $this->aggregators)) { |
|
57 | + if ( ! array_key_exists($class, $this->aggregators)) { |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | } else { |
78 | 78 | $class = get_class($model); |
79 | 79 | |
80 | - if (! array_key_exists($class, $this->aggregators)) { |
|
80 | + if ( ! array_key_exists($class, $this->aggregators)) { |
|
81 | 81 | return; |
82 | 82 | } |
83 | 83 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | $class = get_class($model); |
103 | 103 | |
104 | - if (! array_key_exists($class, $this->aggregators)) { |
|
104 | + if ( ! array_key_exists($class, $this->aggregators)) { |
|
105 | 105 | return; |
106 | 106 | } |
107 | 107 |