Completed
Pull Request — master (#57)
by Sullivan
06:24
created
src/Exception/ConnectionNotFoundException.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.
src/Form/Type/MeasurementType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@
 block discarded – undo
43 43
         $resolver
44 44
             ->setDefined('connection')
45 45
             ->setDefaults([
46
-                'choices' => function (Options $options) {
46
+                'choices' => function(Options $options) {
47 47
                     $connection = $options->offsetExists('connection')
48 48
                         ? $this->connectionRegistry->getHttpConnection($options['connection'])
49 49
                         : $this->connectionRegistry->getDefaultHttpConnection()
50 50
                     ;
51
-                    $measurements = array_map(function ($point) {
51
+                    $measurements = array_map(function($point) {
52 52
                         return $point['name'];
53 53
                     }, $connection->query('SHOW MEASUREMENTS')->getPoints());
54 54
 
Please login to merge, or discard this patch.
src/Services/ConnectionRegistry.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.