@@ -106,7 +106,7 @@ |
||
| 106 | 106 | /** |
| 107 | 107 | * @ORM\Id @ORM\Column(name="id", type="integer") |
| 108 | 108 | * @ORM\GeneratedValue(strategy="AUTO") |
| 109 | - */ |
|
| 109 | + */ |
|
| 110 | 110 | public $id; |
| 111 | 111 | } |
| 112 | 112 | |
@@ -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\Ticket; |
| 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\Ticket; |
| 6 | 6 | |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | /** |
| 89 | 89 | * @ORM\Id @ORM\Column(name="id", type="integer") |
| 90 | 90 | * @ORM\GeneratedValue(strategy="AUTO") |
| 91 | - */ |
|
| 91 | + */ |
|
| 92 | 92 | public $id; |
| 93 | 93 | } |
| 94 | 94 | |
@@ -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\Ticket; |
| 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\Ticket; |
| 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 | use Doctrine\Tests\Models\DDC3699\DDC3699RelationOne; |
| 6 | 6 | use Doctrine\Tests\Models\DDC3699\DDC3699RelationMany; |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $relation = new DDC3699RelationOne(); |
| 35 | 35 | |
| 36 | 36 | $relation->id = $id; |
| 37 | - $relation->child = $child ; |
|
| 37 | + $relation->child = $child; |
|
| 38 | 38 | $child->oneRelation = $relation; |
| 39 | 39 | |
| 40 | 40 | $this->em->persist($relation); |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | $relation = new DDC3699RelationMany(); |
| 78 | 78 | |
| 79 | 79 | $relation->id = $id; |
| 80 | - $relation->child = $child ; |
|
| 80 | + $relation->child = $child; |
|
| 81 | 81 | $child->relations[] = $relation; |
| 82 | 82 | |
| 83 | 83 | $this->em->persist($relation); |
@@ -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\Ticket; |
| 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\Ticket; |
| 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\Tests\ORM\Functional\Ticket; |
| 6 | 6 | |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | $employee = new Issue5989Employee(); |
| 31 | 31 | |
| 32 | - $employeeTags =['tag2', 'tag3']; |
|
| 32 | + $employeeTags = ['tag2', 'tag3']; |
|
| 33 | 33 | $employee->tags = $employeeTags; |
| 34 | 34 | $this->em->persist($employee); |
| 35 | 35 | |
@@ -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\Ticket; |
| 6 | 6 | |