-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10385 from nicolas-grekas/uninitialized-prop-repr…
…oducer Fix initializing lazy objects and get rid of "Typed property must not be accessed before initialization" errors
- Loading branch information
Showing
5 changed files
with
116 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\Models\GH10336; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="gh10336_entities") | ||
*/ | ||
class GH10336Entity | ||
{ | ||
/** | ||
* @ORM\Id | ||
* @ORM\Column(type="integer") | ||
* @ORM\GeneratedValue | ||
*/ | ||
public ?int $id = null; | ||
|
||
/** | ||
* @ORM\ManyToOne(targetEntity="GH10336Relation") | ||
* @ORM\JoinColumn(name="relation_id", referencedColumnName="id", nullable=true) | ||
*/ | ||
public ?GH10336Relation $relation = null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\Models\GH10336; | ||
|
||
use Doctrine\ORM\Mapping as ORM; | ||
|
||
/** | ||
* @ORM\Entity | ||
* @ORM\Table(name="gh10336_relations") | ||
*/ | ||
class GH10336Relation | ||
{ | ||
/** | ||
* @ORM\Id | ||
* @ORM\Column(type="integer") | ||
* @ORM\GeneratedValue | ||
*/ | ||
public ?int $id = null; | ||
|
||
/** | ||
* @ORM\Column(type="string") | ||
*/ | ||
public string $value; | ||
} |
44 changes: 44 additions & 0 deletions
44
tests/Doctrine/Tests/ORM/Functional/Ticket/GH10336Test.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use Doctrine\Tests\Models\GH10336\GH10336Entity; | ||
use Doctrine\Tests\Models\GH10336\GH10336Relation; | ||
use Doctrine\Tests\OrmFunctionalTestCase; | ||
|
||
/** | ||
* @requires PHP 7.4 | ||
*/ | ||
final class GH10336Test extends OrmFunctionalTestCase | ||
{ | ||
public function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->createSchemaForModels( | ||
GH10336Entity::class, | ||
GH10336Relation::class | ||
); | ||
} | ||
|
||
public function testCanAccessRelationPropertyAfterClear(): void | ||
{ | ||
$relation = new GH10336Relation(); | ||
$relation->value = 'foo'; | ||
$entity = new GH10336Entity(); | ||
$entity->relation = $relation; | ||
|
||
$this->_em->persist($entity); | ||
$this->_em->persist($relation); | ||
$this->_em->flush(); | ||
$this->_em->clear(); | ||
|
||
$entity = $this->_em->find(GH10336Entity::class, 1); | ||
|
||
$this->_em->clear(); | ||
|
||
$this->assertSame('foo', $entity->relation->value); | ||
} | ||
} |