Completed
Push — feature/php-7 ( 0cffe9...90b7f2 )
by Martin
06:25 queued 04:09
created
src/MartinGeorgiev/Doctrine/DBAL/Types/AbstractType.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Utils/DataStructure.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace MartinGeorgiev\Utils;
6 6
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public static function transformPostgresTextArrayToPHPArray(string $postgresArray): array
20 20
     {
21
-        $transform = static function ($textArrayToTransform) use (&$transform) {
21
+        $transform = static function($textArrayToTransform) use (&$transform) {
22 22
             $phpArray = str_getcsv(trim($textArrayToTransform, '{}'));
23 23
             foreach ($phpArray as $i => $text) {
24 24
                 if ($text === null) {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public static function transformPHPArrayToPostgresTextArray(array $phpArray): string
59 59
     {
60
-        $transform = static function (array $phpArrayToTransform) use (&$transform) {
60
+        $transform = static function(array $phpArrayToTransform) use (&$transform) {
61 61
             $result = [];
62 62
             foreach ($phpArrayToTransform as $text) {
63 63
                 if (is_array($text)) {
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/ArrayCat.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 MartinGeorgiev\Doctrine\ORM\Query\AST\Functions;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/JsonTransformer.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/AbstractTypeArray.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/SmallIntArray.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/TextArray.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/Jsonb.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.
src/MartinGeorgiev/Doctrine/DBAL/Types/JsonbArray.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 MartinGeorgiev\Doctrine\DBAL\Types;
6 6
 
Please login to merge, or discard this patch.