| 1 | <?php |
||
| 8 | class UserInformationQuery implements ApiParameters |
||
| 9 | { |
||
| 10 | /** @var UserIdentifier */ |
||
| 11 | private $userIdentifier; |
||
| 12 | |||
| 13 | /** @var boolean */ |
||
| 14 | private $includeEntities; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * UserInformationQuery constructor. |
||
| 18 | * |
||
| 19 | * @param UserIdentifier $userIdentifier |
||
| 20 | * @param bool $includeEntities |
||
| 21 | */ |
||
| 22 | 63 | public function __construct(UserIdentifier $userIdentifier, $includeEntities = false) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | 9 | public function toArray() |
|
| 39 | } |
||
| 40 |