1 | <?php |
||
10 | class StaffResponse |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | const ERROR_EMAIL_ALREADY_EXIST = 'email_already_exist'; |
||
16 | |||
17 | /** |
||
18 | * @var Staff |
||
19 | */ |
||
20 | private $staff; |
||
21 | |||
22 | /** |
||
23 | * @return Staff |
||
24 | */ |
||
25 | public function getStaff() |
||
29 | |||
30 | /** |
||
31 | * @param Staff $staff |
||
32 | */ |
||
33 | public function setStaff(Staff $staff) |
||
37 | } |
||
38 |