Completed
Push — master ( aa5a73...5f3c84 )
by Ondřej
02:54
created
src/Ivory/Result/CommandResult.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\Result;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Query/IRelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,5 +68,5 @@
 block discarded – undo
68 68
      * @return IRelationDefinition definition of relation containing at most <tt>$limit</tt> rows, skipping the first
69 69
      *                               <tt>$offset</tt> rows
70 70
      */
71
-    function limit(?int $limit, int $offset = 0): IRelationDefinition;
71
+    function limit(?int $limit, int $offset = 0) : IRelationDefinition;
72 72
 }
Please login to merge, or discard this patch.
src/Ivory/Query/Command.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\Query;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Query/RelationDefinition.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\Query;
5 5
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
         return new SortedRelationDefinition($this, $sortExpression, ...$args);
16 16
     }
17 17
 
18
-    public function limit(?int $limit, int $offset = 0): IRelationDefinition
18
+    public function limit(?int $limit, int $offset = 0) : IRelationDefinition
19 19
     {
20 20
         return new LimitedRelationDefinition($this, $limit, $offset);
21 21
     }
Please login to merge, or discard this patch.
src/Ivory/Result/QueryResult.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\Result;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Result/CopyOutResult.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\Result;
5 5
 
Please login to merge, or discard this patch.
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
 
4 4
 namespace Ivory\Result;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Result/CopyInResult.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\Result;
5 5
 
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.