Passed
Push — master ( 6cd7aa...14d5fd )
by Ondřej
02:18
created
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.
src/Ivory/Value/EnumItem.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\Value;
4 4
 
5 5
 use Ivory\Exception\IncomparableException;
Please login to merge, or discard this patch.
src/Ivory/Value/PgLogSequenceNumber.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\Value;
4 4
 
5 5
 use Ivory\Value\Alg\ComparableWithPhpOperators;
Please login to merge, or discard this patch.
src/Ivory/Value/TimeBase.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\Value;
4 4
 
5 5
 use Ivory\Value\Alg\ComparableWithPhpOperators;
Please login to merge, or discard this patch.
src/Ivory/Value/FixedBitString.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\Value;
4 4
 
5 5
 use Ivory\Exception\IncomparableException;
Please login to merge, or discard this patch.
src/Ivory/Value/TimeInterval.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\Value;
4 4
 
5 5
 use Ivory\Value\Alg\ComparableWithPhpOperators;
Please login to merge, or discard this patch.
src/Ivory/Value/Alg/CallbackTupleEqualizer.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\Value\Alg;
4 4
 
5 5
 use Ivory\Relation\ITuple;
Please login to merge, or discard this patch.
src/Ivory/Value/Alg/CallbackTupleFilter.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\Value\Alg;
4 4
 
5 5
 use Ivory\Relation\ITuple;
Please login to merge, or discard this patch.