| 1 | <?php |
||
| 6 | class ProfileRequest extends AbstractRequest |
||
| 7 | { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var mixed |
||
| 11 | */ |
||
| 12 | protected $profileSettings; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * ProfileRequest constructor. |
||
| 16 | * |
||
| 17 | * @param string $pageToken |
||
| 18 | * @param mixed $profileSettings |
||
| 19 | */ |
||
| 20 | 2 | public function __construct(string $pageToken, $profileSettings) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @return null|array |
||
| 29 | */ |
||
| 30 | 2 | protected function buildHeaders() |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @return null|array|\Kerox\Messenger\Model\ProfileSettings |
||
| 41 | */ |
||
| 42 | 2 | protected function buildBody() |
|
| 55 | |||
| 56 | /** |
||
| 57 | * @return array |
||
| 58 | */ |
||
| 59 | 2 | protected function buildQuery(): array |
|
| 71 | } |
||
| 72 |