1 | <?php |
||
18 | class Domain extends AbstractApi |
||
19 | { |
||
20 | /** |
||
21 | * List all domains associated with the current account. |
||
22 | * |
||
23 | * @return DomainEntity[] |
||
24 | */ |
||
25 | public function list() |
||
31 | |||
32 | /** |
||
33 | * Create a domain name in DNS. |
||
34 | * |
||
35 | * @param string $name Domain name to create |
||
36 | * @param string $ipAddress IP to use when creating default records (A and MX) |
||
37 | * |
||
38 | * @throws HttpException |
||
39 | * |
||
40 | * @return DomainEntity |
||
41 | */ |
||
42 | public function create($name, $ipAddress) |
||
52 | |||
53 | /** |
||
54 | * Delete a domain name and all associated records. |
||
55 | * |
||
56 | * @param string $domain Domain name to delete |
||
57 | * |
||
58 | * @throws HttpException |
||
59 | */ |
||
60 | public function delete($domain) |
||
64 | } |
||
65 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.