Passed
Push — master ( 0c19f1...8279ff )
by Ondřej
06:33
created
src/Ivory/Result/Result.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\Result;
4 4
 
5 5
 abstract class Result implements IResult
Please login to merge, or discard this patch.
src/Ivory/ICoreFactory.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;
4 4
 
5 5
 use Ivory\Cache\ICacheControl;
Please login to merge, or discard this patch.
src/Ivory/Lang/SqlPattern/ISqlPatternParser.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\Lang\SqlPattern;
4 4
 
5 5
 interface ISqlPatternParser
Please login to merge, or discard this patch.
src/Ivory/Lang/SqlPattern/CachingSqlPatternParser.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\Lang\SqlPattern;
4 4
 
5 5
 use Ivory\Cache\ICacheControl;
Please login to merge, or discard this patch.
src/Ivory/Lang/SqlPattern/SqlPatternPlaceholder.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\Lang\SqlPattern;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Ivory/Lang/SqlPattern/SqlPattern.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\Lang\SqlPattern;
4 4
 
5 5
 use Ivory\Exception\NoDataException;
Please login to merge, or discard this patch.
src/Ivory/Lang/SqlPattern/SqlPatternParser.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\Lang\SqlPattern;
4 4
 
5 5
 use Ivory\Utils\StringUtils;
Please login to merge, or discard this patch.
src/Ivory/Lang/Sql/ISqlSortExpression.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\Lang\Sql;
4 4
 
5 5
 /**
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
 /**
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 class Types
9 9
 {
10 10
     const BIGINT_MIN = '-9223372036854775808'; // NOTE: written as string not to lose precision on platforms where this
11
-    const BIGINT_MAX = '999999999999';  //       would be converted to float
11
+    const BIGINT_MAX = '999999999999'; //       would be converted to float
12 12
 
13 13
     /**
14 14
      * Lists names of types defined by SQL as reserved ones.
Please login to merge, or discard this patch.