85 lines
1.7 KiB
PHP
85 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Game\Entity;
|
|
|
|
use App\Game\Enum\SessionSettingType;
|
|
use App\Game\Repository\SessionSettingRepository;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Entity(repositoryClass: SessionSettingRepository::class)]
|
|
#[ORM\Table(name: 'session_setting')]
|
|
class SessionSetting
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Session::class)]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
private ?Session $session = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Player::class)]
|
|
#[ORM\JoinColumn(nullable: true)]
|
|
private ?Player $player = null;
|
|
|
|
#[ORM\Column(type: 'string', length: 255, enumType: SessionSettingType::class)]
|
|
private ?SessionSettingType $name = null;
|
|
|
|
#[ORM\Column(type: 'text', nullable: true)]
|
|
private ?string $value = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getSession(): ?Session
|
|
{
|
|
return $this->session;
|
|
}
|
|
|
|
public function setSession(?Session $session): static
|
|
{
|
|
$this->session = $session;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPlayer(): ?Player
|
|
{
|
|
return $this->player;
|
|
}
|
|
|
|
public function setPlayer(?Player $player): static
|
|
{
|
|
$this->player = $player;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getName(): ?SessionSettingType
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(SessionSettingType $name): static
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getValue(): ?string
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
public function setValue(?string $value): static
|
|
{
|
|
$this->value = $value;
|
|
|
|
return $this;
|
|
}
|
|
}
|