Passed
Push — master ( 0c19f1...8279ff )
by Ondřej
06:33
created
src/Ivory/Relation/Alg/CallbackTupleEvaluator.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\Alg;
4 4
 
5 5
 use Ivory\Relation\ITuple;
Please login to merge, or discard this patch.
src/Ivory/Relation/Alg/IValueHasher.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\Alg;
4 4
 
5 5
 interface IValueHasher
Please login to merge, or discard this patch.
src/Ivory/Relation/FilteredColumn.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\Relation\Alg\CallbackValueFilter;
Please login to merge, or discard this patch.
src/Ivory/Relation/Column.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\Relation\Alg\CallbackValueComparator;
Please login to merge, or discard this patch.
src/Ivory/Relation/Tuple.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\AmbiguousException;
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.