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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Models\Cache;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping\Cache;
use Doctrine\ORM\Mapping\Column;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\OneToMany;
use Doctrine\ORM\Mapping\OneToOne;
use Doctrine\ORM\Mapping\Table;
#[Table('cache_traveler')]
#[Cache]
#[Entity]
class Traveler
{
/** @var int */
#[Id]
#[GeneratedValue]
#[Column(type: 'integer')]
protected $id;
/** @phpstan-var Collection<int, Travel> */
#[Cache('NONSTRICT_READ_WRITE')]
#[OneToMany(targetEntity: 'Travel', mappedBy: 'traveler', cascade: ['persist', 'remove'], orphanRemoval: true)]
public $travels;
/** @var TravelerProfile */
#[Cache]
#[OneToOne(targetEntity: 'TravelerProfile')]
protected $profile;
public function __construct(
#[Column]
protected string $name,
) {
$this->travels = new ArrayCollection();
}
public function getId(): int
{
return $this->id;
}
public function setId(int $id): void
{
$this->id = $id;
}
public function getName(): string
{
return $this->name;
}
public function setName(string $name): void
{
$this->name = $name;
}
public function getProfile(): TravelerProfile
{
return $this->profile;
}
public function setProfile(TravelerProfile $profile): void
{
$this->profile = $profile;
}
/** @phpstan-return Collection<int, Travel> */
public function getTravels(): Collection
{
return $this->travels;
}
public function addTravel(Travel $item): void
{
if (! $this->travels->contains($item)) {
$this->travels->add($item);
}
if ($item->getTraveler() !== $this) {
$item->setTraveler($this);
}
}
public function removeTravel(Travel $item): void
{
$this->travels->removeElement($item);
}
}
|