Passed
Push — master ( 913c0a...fd8403 )
by Ondřej
05:45
created
src/Ivory/Type/Postgresql/RangeType.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 Ivory\Type\Postgresql;
4 4
 
5 5
 use Ivory\NamedDbObject;
Please login to merge, or discard this patch.
src/Ivory/Type/Postgresql/DomainType.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 Ivory\Type\Postgresql;
4 4
 
5 5
 use Ivory\NamedDbObject;
Please login to merge, or discard this patch.
src/Ivory/Type/Postgresql/EnumType.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 Ivory\Type\Postgresql;
4 4
 
5 5
 use Ivory\Lang\Sql\Types;
Please login to merge, or discard this patch.
src/Ivory/Type/Postgresql/CompositeType.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 Ivory\Type\Postgresql;
4 4
 
5 5
 use Ivory\Exception\ParseException;
Please login to merge, or discard this patch.
src/Ivory/Lang/Sql/Types.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Lang\Sql;
4 4
 
5 5
 use Ivory\Type\Ivory\IdentifierSerializer;
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 class Types
12 12
 {
13 13
     const BIGINT_MIN = '-9223372036854775808'; // NOTE: written as string not to lose precision on platforms where this
14
-    const BIGINT_MAX = '999999999999';  //       would be converted to float
14
+    const BIGINT_MAX = '999999999999'; //       would be converted to float
15 15
 
16 16
     /**
17 17
      * Lists names of types defined by SQL as reserved ones.
Please login to merge, or discard this patch.
src/Ivory/Data/Set/CustomSet.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 Ivory\Data\Set;
4 4
 
5 5
 use Ivory\Value\Alg\CallbackValueHasher;
Please login to merge, or discard this patch.