| 1 | <?php |
||
| 16 | class Aml extends Api |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Get AML Settings (permission needed: #zone_settings:edit) |
||
| 20 | * Fetch AML configuration for a zone |
||
| 21 | * |
||
| 22 | * @param string $zone_identifier |
||
| 23 | */ |
||
| 24 | public function viewer($zone_identifier) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Update AML Settings (permission needed: #zone_settings:edit) |
||
| 31 | * Update AML configuration for a zone |
||
| 32 | * |
||
| 33 | * @param bool|null $enabled Enable Accelerated Mobile Links on mobile browsers. |
||
| 34 | * @param array|null $subdomains Your contact email address, repeated |
||
| 35 | * @param string|null $prepend_links_with Your current password |
||
| 36 | */ |
||
| 37 | public function change_email($enabled = null, $subdomains = null, $prepend_links_with = null) |
||
| 47 | } |
||
| 48 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.