Completed
Push — master ( 9afa1f...c51bb5 )
by Alessandro
02:33
created
src/DependencyInjection/InfluxDbExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -116,13 +116,13 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Services/ConnectionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
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
 /**
Please login to merge, or discard this patch.