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 96 97 98 99
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
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;
class DDC1181Test extends OrmFunctionalTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->createSchemaForModels(
DDC1181Hotel::class,
DDC1181Booking::class,
DDC1181Room::class,
);
}
#[Group('DDC-1181')]
public function testIssue(): void
{
$hotel = new DDC1181Hotel();
$room1 = new DDC1181Room();
$room2 = new DDC1181Room();
$this->_em->persist($hotel);
$this->_em->persist($room1);
$this->_em->persist($room2);
$this->_em->flush();
$booking1 = new DDC1181Booking();
$booking1->hotel = $hotel;
$booking1->room = $room1;
$booking2 = new DDC1181Booking();
$booking2->hotel = $hotel;
$booking2->room = $room2;
$hotel->bookings[] = $booking1;
$hotel->bookings[] = $booking2;
$this->_em->persist($booking1);
$this->_em->persist($booking2);
$this->_em->flush();
$this->_em->remove($hotel);
$this->_em->flush();
self::assertEmpty($this->_em->getRepository(DDC1181Booking::class)->findAll());
}
}
#[Entity]
class DDC1181Hotel
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue]
public $id;
/** @var Booking[] */
#[OneToMany(targetEntity: 'DDC1181Booking', mappedBy: 'hotel', cascade: ['remove'])]
public $bookings;
}
#[Entity]
class DDC1181Booking
{
/** @var Hotel */
#[JoinColumn(name: 'hotel_id', referencedColumnName: 'id')]
#[Id]
#[ManyToOne(targetEntity: 'DDC1181Hotel', inversedBy: 'bookings')]
public $hotel;
/** @var Room */
#[JoinColumn(name: 'room_id', referencedColumnName: 'id')]
#[Id]
#[ManyToOne(targetEntity: 'DDC1181Room')]
public $room;
}
#[Entity]
class DDC1181Room
{
/** @var int */
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue]
public $id;
}
|