@@ -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\Performance\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\Performance\Hydration; |
6 | 6 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $user = new CMS\CmsUser(); |
42 | 42 | |
43 | 43 | $user->status = 'developer'; |
44 | - $user->username = 'jwage' . $i; |
|
44 | + $user->username = 'jwage'.$i; |
|
45 | 45 | $user->name = 'Jonathan'; |
46 | 46 | |
47 | 47 | $this->entityManager->persist($user); |
@@ -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\Performance\LazyLoading; |
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\Performance\ChangeSet; |
6 | 6 | |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | $user = new CmsUser; |
35 | 35 | $user->id = $i; |
36 | 36 | $user->status = 'user'; |
37 | - $user->username = 'user' . $i; |
|
38 | - $user->name = 'Mr.Smith-' . $i; |
|
37 | + $user->username = 'user'.$i; |
|
38 | + $user->name = 'Mr.Smith-'.$i; |
|
39 | 39 | $this->users[] = $user; |
40 | 40 | |
41 | 41 | $this->unitOfWork->registerManaged( |
@@ -213,8 +213,8 @@ |
||
213 | 213 | $this->metadataCache = []; |
214 | 214 | |
215 | 215 | $this->em |
216 | - ->getEventManager() |
|
217 | - ->removeEventListener([Events::onClear], $this); |
|
216 | + ->getEventManager() |
|
217 | + ->removeEventListener([Events::onClear], $this); |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | /** |
@@ -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 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | { |
144 | 144 | $row = $this->stmt->fetch(PDO::FETCH_ASSOC); |
145 | 145 | |
146 | - if (! $row) { |
|
146 | + if ( ! $row) { |
|
147 | 147 | $this->cleanup(); |
148 | 148 | |
149 | 149 | 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; |
@@ -322,10 +322,10 @@ discard block |
||
322 | 322 | |
323 | 323 | // WARNING: BC break! We know this is the desired behavior to type convert values, but this |
324 | 324 | // erroneous behavior exists since 2.0 and we're forced to keep compatibility. |
325 | - if (! isset($cacheKeyInfo['isScalar'])) { |
|
325 | + if ( ! isset($cacheKeyInfo['isScalar'])) { |
|
326 | 326 | $dqlAlias = $cacheKeyInfo['dqlAlias']; |
327 | 327 | $type = $cacheKeyInfo['type']; |
328 | - $fieldName = $dqlAlias . '_' . $fieldName; |
|
328 | + $fieldName = $dqlAlias.'_'.$fieldName; |
|
329 | 329 | $value = $type |
330 | 330 | ? $type->convertToPHPValue($value, $this->platform) |
331 | 331 | : $value; |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | */ |
432 | 432 | protected function getClassMetadata($className) |
433 | 433 | { |
434 | - if (! isset($this->metadataCache[$className])) { |
|
434 | + if ( ! isset($this->metadataCache[$className])) { |
|
435 | 435 | $this->metadataCache[$className] = $this->em->getClassMetadata($className); |
436 | 436 | } |
437 | 437 |
@@ -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\Tests\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\Tests\ORM\Persisters; |
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\Tests\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\Tests\ORM\Functional; |
6 | 6 |