1 | <?php |
||
7 | class UserNotInTeamException extends RuntimeException |
||
8 | { |
||
9 | /** |
||
10 | * Name of the affected team. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $team; |
||
15 | |||
16 | /** |
||
17 | * Set the affected team. |
||
18 | * |
||
19 | * @param string $team |
||
20 | * @return $this |
||
21 | */ |
||
22 | public function setTeam($team) |
||
30 | |||
31 | /** |
||
32 | * Get the affected team. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getTeam() |
||
40 | } |
||
41 |