1 | <?php |
||
7 | class FollowParameters implements ApiParameters |
||
8 | { |
||
9 | /** @var UserIdentifier */ |
||
10 | private $userIdentifier; |
||
11 | |||
12 | /** @var bool */ |
||
13 | private $follow; |
||
14 | |||
15 | /** |
||
16 | * FollowParameters constructor. |
||
17 | * |
||
18 | * @param UserIdentifier $userIdentifier |
||
19 | * @param bool $follow |
||
20 | */ |
||
21 | 63 | public function __construct( |
|
28 | |||
29 | /** |
||
30 | * @return array |
||
31 | */ |
||
32 | 9 | public function toArray() |
|
40 | } |
||
41 |