@@ -1,5 +1,5 @@ |
||
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; |
@@ -1,5 +1,5 @@ |
||
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 |
@@ -1,5 +1,5 @@ |
||
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; |
@@ -1,5 +1,5 @@ |
||
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; |
@@ -1,5 +1,5 @@ |
||
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; |
@@ -1,5 +1,5 @@ |
||
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 |
@@ -1,5 +1,5 @@ |
||
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; |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 | } |
@@ -1,5 +1,5 @@ |
||
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 |