@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | |
| 4 | -declare(strict_types=1); |
|
| 4 | +declare(strict_types = 1); |
|
| 5 | 5 | |
| 6 | 6 | namespace Doctrine\ORM\Proxy\Factory; |
| 7 | 7 | |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | |
| 4 | -declare(strict_types=1); |
|
| 4 | +declare(strict_types = 1); |
|
| 5 | 5 | |
| 6 | 6 | namespace Doctrine\ORM\Proxy\Factory; |
| 7 | 7 | |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | |
| 4 | -declare(strict_types=1); |
|
| 4 | +declare(strict_types = 1); |
|
| 5 | 5 | |
| 6 | 6 | namespace Doctrine\ORM\Proxy; |
| 7 | 7 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM\Internal; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM\Internal\Hydration; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM\Internal\Hydration; |
| 6 | 6 | |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | { |
| 146 | 146 | $row = $this->stmt->fetch(PDO::FETCH_ASSOC); |
| 147 | 147 | |
| 148 | - if (! $row) { |
|
| 148 | + if ( ! $row) { |
|
| 149 | 149 | $this->cleanup(); |
| 150 | 150 | |
| 151 | 151 | return false; |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | : $value; |
| 287 | 287 | |
| 288 | 288 | if ($cacheKeyInfo['isIdentifier'] && $value !== null) { |
| 289 | - $id[$dqlAlias] .= '|' . $value; |
|
| 289 | + $id[$dqlAlias] .= '|'.$value; |
|
| 290 | 290 | $nonemptyComponents[$dqlAlias] = true; |
| 291 | 291 | } |
| 292 | 292 | break; |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | if ( ! isset($cacheKeyInfo['isScalar'])) { |
| 325 | 325 | $dqlAlias = $cacheKeyInfo['dqlAlias']; |
| 326 | 326 | $type = $cacheKeyInfo['type']; |
| 327 | - $fieldName = $dqlAlias . '_' . $fieldName; |
|
| 327 | + $fieldName = $dqlAlias.'_'.$fieldName; |
|
| 328 | 328 | $value = $type |
| 329 | 329 | ? $type->convertToPHPValue($value, $this->platform) |
| 330 | 330 | : $value; |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Doctrine\ORM\Internal\Hydration; |
| 6 | 6 | |
@@ -90,6 +90,6 @@ discard block |
||
| 90 | 90 | */ |
| 91 | 91 | public function valid() |
| 92 | 92 | { |
| 93 | - return ($this->current!=false); |
|
| 93 | + return ($this->current != false); |
|
| 94 | 94 | } |
| 95 | 95 | } |