1 | <?php |
||
7 | class EditTeacher implements RequestInterface |
||
8 | { |
||
9 | /** @var int */ |
||
10 | private $teacherId; |
||
11 | |||
12 | /** @var Teacher */ |
||
13 | private $teacher; |
||
14 | |||
15 | 3 | public function __construct($teacherId, Teacher $teacher) |
|
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 1 | public function getMethod() |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 1 | public function getParams() |
|
36 | } |
||
37 |