forked from Anotheroption4726/api-platform-iot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGame.php
More file actions
102 lines (83 loc) · 1.97 KB
/
Copy pathGame.php
File metadata and controls
102 lines (83 loc) · 1.97 KB
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
100
101
102
<?php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ApiResource()
* @ORM\Entity(repositoryClass="App\Repository\GameRepository")
*/
class Game
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $maxPlayer;
/**
* @ORM\OneToMany(targetEntity="App\Entity\Player", mappedBy="game")
*/
private $players;
public function __construct()
{
$this->players = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getMaxPlayer(): ?int
{
return $this->maxPlayer;
}
public function setMaxPlayer(?int $maxPlayer): self
{
$this->maxPlayer = $maxPlayer;
return $this;
}
/**
* @return Collection|Player[]
*/
public function getPlayers(): Collection
{
return $this->players;
}
public function addPlayer(Player $player): self
{
if (!$this->players->contains($player)) {
$this->players[] = $player;
$player->setGame($this);
}
return $this;
}
public function removePlayer(Player $player): self
{
if ($this->players->contains($player)) {
$this->players->removeElement($player);
// set the owning side to null (unless already changed)
if ($player->getGame() === $this) {
$player->setGame(null);
}
}
return $this;
}
}