Completed
Push — master ( 8a9a36...5d30b0 )
by Ondřej
03:00
created
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
 
4 4
 namespace Ivory\Lang\SqlPattern;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Lang/SqlPattern/SqlPatternParser.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
 
4 4
 namespace Ivory\Lang\SqlPattern;
5 5
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      * @param bool|null $quoted
98 98
      * @return string|null <tt>null</tt> iff <tt>$str</tt> is <tt>null</tt>
99 99
      */
100
-    private function unquoteString(?string $str, ?bool &$quoted = null): ?string
100
+    private function unquoteString(?string $str, ?bool &$quoted = null) : ?string
101 101
     {
102 102
         if ($str && $str[0] == '"') {
103 103
             assert($str[strlen($str) - 1] == '"');
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
 
4 4
 namespace Ivory\Lang\SqlPattern;
5 5
 
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
 
4 4
 namespace Ivory\Lang\SqlPattern;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Lang/Sql/Keywords.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
 
4 4
 namespace Ivory\Lang\Sql;
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
 
4 4
 namespace Ivory\Lang\Sql;
5 5
 
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 class Types
10 10
 {
11 11
     const BIGINT_MIN = '-9223372036854775808'; // NOTE: written as string not to lose precision on platforms where this
12
-    const BIGINT_MAX = '999999999999';  //       would be converted to float
12
+    const BIGINT_MAX = '999999999999'; //       would be converted to float
13 13
 
14 14
     /**
15 15
      * Lists names of types defined by SQL as reserved ones.
Please login to merge, or discard this patch.
src/Ivory/Data/Relation.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
 
4 4
 namespace Ivory\Data;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Data/Set/DictionarySet.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
 
4 4
 namespace Ivory\Data\Set;
5 5
 
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
 
4 4
 namespace Ivory\Data\Set;
5 5
 
Please login to merge, or discard this patch.