Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Update extends AbstractLocation { |
||
12 | |||
13 | protected $_newEmail; |
||
14 | |||
15 | public function __construct(Account $account, $newEmail) { |
||
16 | |||
17 | parent::__construct($account); |
||
18 | |||
19 | $this->_newEmail = $newEmail; |
||
20 | } |
||
21 | |||
22 | protected function _getPayload() : array { |
||
26 | ]; |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @throws Exception\InvalidResponse |
||
31 | * @throws Exception\RateLimitReached |
||
32 | * @throws Exception\ServiceUnavailable |
||
33 | */ |
||
34 | public function getResponse() : Response\Account\Update { |
||
36 | } |
||
37 | } |
||
38 |