1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\JoinColumn;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\Tests\OrmFunctionalTestCase;
use PHPUnit\Framework\Attributes\Group;
#[Group('DDC-1300')]
class DDC1300Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(
DDC1300Foo::class,
DDC1300FooLocale::class,
);
}
public function testIssue(): void
{
$foo = new DDC1300Foo();
$foo->fooReference = 'foo';
$this->_em->persist($foo);
$this->_em->flush();
$locale = new DDC1300FooLocale();
$locale->foo = $foo;
$locale->locale = 'en';
$locale->title = 'blub';
$this->_em->persist($locale);
$this->_em->flush();
$query = $this->_em->createQuery('SELECT f, fl FROM Doctrine\Tests\ORM\Functional\Ticket\DDC1300Foo f JOIN f.fooLocaleRefFoo fl');
$result = $query->getResult();
self::assertCount(1, $result);
}
}
#[Entity]
class DDC1300Foo
{
/** @var int fooID */
#[Column(name: 'fooID', type: 'integer', nullable: false)]
#[GeneratedValue(strategy: 'AUTO')]
#[Id]
public $fooID = null;
/** @var string fooReference */
#[Column(name: 'fooReference', type: 'string', nullable: true, length: 45)]
public $fooReference = null;
/** @phpstan-var Collection<int, DDC1300FooLocale> */
#[OneToMany(targetEntity: 'DDC1300FooLocale', mappedBy: 'foo', cascade: ['persist'])]
public $fooLocaleRefFoo = null;
/** @param mixed[]|null $options */
public function __construct(array|null $options = null)
{
$this->fooLocaleRefFoo = new ArrayCollection();
}
}
#[Entity]
class DDC1300FooLocale
{
/** @var DDC1300Foo */
#[ManyToOne(targetEntity: 'DDC1300Foo')]
#[JoinColumn(name: 'fooID', referencedColumnName: 'fooID')]
#[Id]
public $foo = null;
/** @var string locale */
#[Column(name: 'locale', type: 'string', nullable: false, length: 5)]
#[Id]
public $locale = null;
/** @var string title */
#[Column(name: 'title', type: 'string', nullable: true, length: 150)]
public $title = null;
}
|