1 | <?php |
||
7 | class AddAttendees implements RequestInterface |
||
8 | { |
||
9 | /** @var int */ |
||
10 | private $classroomId; |
||
11 | |||
12 | /** @var Attendees */ |
||
13 | private $attendees; |
||
14 | |||
15 | 3 | public function __construct($classroomId, Attendees $attendees) |
|
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 1 | public function getMethod() |
|
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | 1 | public function getParams() |
|
39 | } |
||
40 |