Completed
Push — master ( 42953d...b29973 )
by Ondřej
05:06 queued 02:13
created
src/Ivory/Utils/NotSerializable.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\Utils;
5 5
 
Please login to merge, or discard this patch.
src/Ivory/Cache/CacheControl.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\Cache;
5 5
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * @param CacheItemPoolInterface|null $cacheItemPool cache implementation to use, or <tt>null</tt> to use the
29 29
      *                                                     default set to {@link Ivory::setDefaultCacheImpl()}
30 30
      */
31
-    public function setCacheImpl(?CacheItemPoolInterface $cacheItemPool): void
31
+    public function setCacheImpl(?CacheItemPoolInterface $cacheItemPool) : void
32 32
     {
33 33
         $this->cacheItemPool = $cacheItemPool;
34 34
     }
Please login to merge, or discard this patch.
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.