@@ -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 RelationSeekableIterator implements \SeekableIterator |
@@ -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 ColumnIterator implements \SeekableIterator |
@@ -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\UndefinedColumnException; |
@@ -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 |
@@ -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\Map\ArrayRelationMap; |
@@ -1,5 +1,5 @@ |
||
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; |