Completed
Push — master ( 279f7d...361b61 )
by Sullivan
04:56
created
src/Command/CreateDatabaseCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Command;
6 6
 
Please login to merge, or discard this patch.
src/Command/AbstractCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Command;
6 6
 
Please login to merge, or discard this patch.
src/Command/AbstractConnectionCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Command;
6 6
 
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,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Services;
6 6
 
Please login to merge, or discard this patch.
src/Events/DeferredUdpEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Events;
6 6
 
Please login to merge, or discard this patch.
src/Events/DeferredHttpEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Events;
6 6
 
Please login to merge, or discard this patch.
src/Events/HttpEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Events;
6 6
 
Please login to merge, or discard this patch.
src/Events/UdpEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Algatux\InfluxDbBundle\Events;
6 6
 
Please login to merge, or discard this patch.
src/Form/Type/FieldKeyType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $resolver
21 21
             ->setRequired('measurement')
22 22
             ->setDefaults([
23
-                'choices' => function (Options $options) {
23
+                'choices' => function(Options $options) {
24 24
                     return $this->loadChoicesFromQuery(
25 25
                         sprintf(
26 26
                             'SHOW FIELD KEYS FROM "%s"',
Please login to merge, or discard this patch.