Completed
Push — master ( 33620a...af9e1a )
by Ondřej
02:56
created
src/Ivory/Relation/RelationSeekableIterator.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\Relation;
4 4
 
5 5
 class RelationSeekableIterator implements \SeekableIterator
Please login to merge, or discard this patch.
src/Ivory/Relation/ColumnIterator.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\Relation;
4 4
 
5 5
 class ColumnIterator implements \SeekableIterator
Please login to merge, or discard this patch.
src/Ivory/Relation/ITuple.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\Relation;
4 4
 
5 5
 use Ivory\Exception\UndefinedColumnException;
Please login to merge, or discard this patch.
src/Ivory/Relation/RenamedRelation.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\Relation;
4 4
 
5 5
 class RenamedRelation extends ProjectedRelationBase
Please login to merge, or discard this patch.
src/Ivory/Relation/IRelation.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\Relation;
4 4
 
5 5
 use Ivory\Data\Set\ISet;
Please login to merge, or discard this patch.
src/Ivory/Relation/ProjectedRelationBase.php 1 patch
Spacing   +2 added lines, -3 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\Relation;
4 4
 
5 5
 abstract class ProjectedRelationBase extends StreamlinedRelation
@@ -19,8 +19,7 @@  discard block
 block discarded – undo
19 19
             $colName = $col->getName();
20 20
             if ($colName !== null && $colName !== '') {
21 21
                 $this->projectedColNameMap[$colName] = (isset($this->projectedColNameMap[$colName]) ?
22
-                    Tuple::AMBIGUOUS_COL :
23
-                    $colOffset
22
+                    Tuple::AMBIGUOUS_COL : $colOffset
24 23
                 );
25 24
             }
26 25
         }
Please login to merge, or discard this patch.
src/Ivory/Relation/StreamlinedRelation.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\Relation;
4 4
 
5 5
 abstract class StreamlinedRelation extends RelationBase
Please login to merge, or discard this patch.
src/Ivory/Relation/RelationMacros.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\Relation;
4 4
 
5 5
 use Ivory\Data\Map\ArrayRelationMap;
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
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Lang\Sql\ISqlPredicate;
Please login to merge, or discard this patch.