| 1 | <?php |
||
| 7 | class DirectMessageParameters implements ApiParameters |
||
| 8 | { |
||
| 9 | /** @var UserIdentifier */ |
||
| 10 | private $userIdentifier; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $message; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * DirectMessageParameters constructor. |
||
| 17 | * |
||
| 18 | * @param UserIdentifier $userIdentifier |
||
| 19 | * @param string $message |
||
| 20 | */ |
||
| 21 | 63 | public function __construct(UserIdentifier $userIdentifier, $message) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | 9 | public function toArray() |
|
| 38 | } |
||
| 39 |