@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace Algatux\InfluxDbBundle\Services\Clients\Contracts; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace Algatux\InfluxDbBundle\Services\Clients\Contracts; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | namespace Algatux\InfluxDbBundle\Services; |
4 | 4 | |
5 | 5 | use Algatux\InfluxDbBundle\Model\PointsCollection; |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | */ |
47 | 47 | private function checkStorageInitialization(string $getWriteMode, string $getPrecision) |
48 | 48 | { |
49 | - if (! isset($this->storage[$getWriteMode])) { |
|
49 | + if (!isset($this->storage[$getWriteMode])) { |
|
50 | 50 | $this->storage[$getWriteMode] = null; |
51 | 51 | } |
52 | 52 |