@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace Algatux\InfluxDbBundle\Events\Listeners; |
4 | 4 | use Algatux\InfluxDbBundle\Events\DeferredInfluxDbEvent; |
5 | 5 | use Algatux\InfluxDbBundle\Events\InfluxDbEvent; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | if ($event instanceof DeferredInfluxDbEvent) { |
44 | 44 | |
45 | - $this->initCollection($event->getWriteMode(),$points->getPrecision()); |
|
45 | + $this->initCollection($event->getWriteMode(), $points->getPrecision()); |
|
46 | 46 | $this->mergeCollections($event->getWriteMode(), $points); |
47 | 47 | |
48 | 48 | return true; |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | */ |
91 | 91 | private function initCollection(string $getWriteMode, string $getPrecision) |
92 | 92 | { |
93 | - if (! isset($this->pointCollections[$getWriteMode])) { |
|
93 | + if (!isset($this->pointCollections[$getWriteMode])) { |
|
94 | 94 | $this->pointCollections[$getWriteMode] = null; |
95 | 95 | } |
96 | 96 |