@@ -116,13 +116,13 @@ |
||
116 | 116 | { |
117 | 117 | $container->setAlias( |
118 | 118 | 'algatux_influx_db.connection.http', |
119 | - 'algatux_influx_db.connection.' . $defaultConnection . '.http' |
|
119 | + 'algatux_influx_db.connection.'.$defaultConnection.'.http' |
|
120 | 120 | ); |
121 | 121 | |
122 | - if ($container->hasDefinition('algatux_influx_db.connection.' . $defaultConnection . '.udp')) { |
|
122 | + if ($container->hasDefinition('algatux_influx_db.connection.'.$defaultConnection.'.udp')) { |
|
123 | 123 | $container->setAlias( |
124 | 124 | 'algatux_influx_db.connection.udp', |
125 | - 'algatux_influx_db.connection.' . $defaultConnection . '.udp' |
|
125 | + 'algatux_influx_db.connection.'.$defaultConnection.'.udp' |
|
126 | 126 | ); |
127 | 127 | } |
128 | 128 | } |
@@ -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 | /** |