Completed
Branch dev (623cfe)
by Greg
03:58
created
classes/DomainMOD/DnSimple.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.dnsimple');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($account_id, $command, $domain)
36 39
     {
37 40
         $base_url = 'https://api.dnsimple.com/v2/';
@@ -48,6 +51,9 @@  discard block
 block discarded – undo
48 51
         }
49 52
     }
50 53
 
54
+    /**
55
+     * @param string $full_url
56
+     */
51 57
     public function apiCall($api_key, $full_url)
52 58
     {
53 59
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.
classes/DomainMOD/Dynadot.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.dynadot');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($api_key, $command, $domain)
36 39
     {
37 40
         $base_url = 'https://api.dynadot.com/api3.xml?key=' . $api_key . '&';
@@ -44,6 +47,9 @@  discard block
 block discarded – undo
44 47
         }
45 48
     }
46 49
 
50
+    /**
51
+     * @param string $full_url
52
+     */
47 53
     public function apiCall($full_url)
48 54
     {
49 55
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.
classes/DomainMOD/Enom.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.enom');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($account_username, $account_password, $domain, $command)
36 39
     {
37 40
         $domainclass = new Domain();
@@ -52,6 +55,9 @@  discard block
 block discarded – undo
52 55
         }
53 56
     }
54 57
 
58
+    /**
59
+     * @param string $full_url
60
+     */
55 61
     public function apiCall($full_url)
56 62
     {
57 63
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.
classes/DomainMOD/Fabulous.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.fabulous');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($account_username, $account_password, $domain, $command)
36 39
     {
37 40
         $base_url = 'https://api.fabulous.com/';
@@ -44,6 +47,9 @@  discard block
 block discarded – undo
44 47
         }
45 48
     }
46 49
 
50
+    /**
51
+     * @param string $full_url
52
+     */
47 53
     public function apiCall($full_url)
48 54
     {
49 55
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.
classes/DomainMOD/Freenom.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.freenom');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($account_username, $account_password, $domain, $command)
36 39
     {
37 40
         $base_url = 'https://api.freenom.com/v2/';
@@ -44,6 +47,9 @@  discard block
 block discarded – undo
44 47
         }
45 48
     }
46 49
 
50
+    /**
51
+     * @param string $full_url
52
+     */
47 53
     public function apiCall($full_url)
48 54
     {
49 55
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.
classes/DomainMOD/GoDaddy.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.godaddy');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($domain, $command)
36 39
     {
37 40
         $base_url = 'https://api.godaddy.com/v1/';
@@ -44,6 +47,9 @@  discard block
 block discarded – undo
44 47
         }
45 48
     }
46 49
 
50
+    /**
51
+     * @param string $full_url
52
+     */
47 53
     public function apiCall($api_key, $api_secret, $full_url)
48 54
     {
49 55
         $handle = curl_init($full_url);
@@ -143,6 +149,9 @@  discard block
 block discarded – undo
143 149
         return $dns_servers;
144 150
     }
145 151
 
152
+    /**
153
+     * @param string $privacy_result
154
+     */
146 155
     public function processPrivacy($privacy_result)
147 156
     {
148 157
         if ($privacy_result == '') {
@@ -153,6 +162,9 @@  discard block
 block discarded – undo
153 162
         return $privacy_status;
154 163
     }
155 164
 
165
+    /**
166
+     * @param string $autorenewal_result
167
+     */
156 168
     public function processAutorenew($autorenewal_result)
157 169
     {
158 170
         if ($autorenewal_result == '') {
Please login to merge, or discard this patch.
classes/DomainMOD/InternetBs.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.internetbs');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($api_key, $api_secret, $command, $domain)
36 39
     {
37 40
         $base_url = 'https://api.internet.bs/';
@@ -44,6 +47,9 @@  discard block
 block discarded – undo
44 47
         }
45 48
     }
46 49
 
50
+    /**
51
+     * @param string $full_url
52
+     */
47 53
     public function apiCall($full_url)
48 54
     {
49 55
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.
classes/DomainMOD/NameBright.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.namebright');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($account_username, $api_app_name, $api_secret, $command, $domain)
36 39
     {
37 40
         $base_url = 'https://api.namebright.com/';
@@ -54,6 +57,11 @@  discard block
 block discarded – undo
54 57
         return array($full_url, $post_fields);
55 58
     }
56 59
 
60
+    /**
61
+     * @param string $full_url
62
+     * @param string $post_fields
63
+     * @param string $command
64
+     */
57 65
     public function apiCall($full_url, $post_fields, $access_token, $command)
58 66
     {
59 67
         if ($command == 'accesstoken') {
@@ -194,6 +202,9 @@  discard block
 block discarded – undo
194 202
         return $dns_servers;
195 203
     }
196 204
 
205
+    /**
206
+     * @param string $privacy_result
207
+     */
197 208
     public function processPrivacy($privacy_result)
198 209
     {
199 210
         if ($privacy_result == '1') {
@@ -204,6 +215,9 @@  discard block
 block discarded – undo
204 215
         return $privacy_status;
205 216
     }
206 217
 
218
+    /**
219
+     * @param string $autorenewal_result
220
+     */
207 221
     public function processAutorenew($autorenewal_result)
208 222
     {
209 223
         if ($autorenewal_result == '1') {
Please login to merge, or discard this patch.
classes/DomainMOD/Namecheap.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->log = new Log('class.namecheap');
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $command
37
+     */
35 38
     public function getApiUrl($api_key, $command, $domain, $account_username, $api_ip_address)
36 39
     {
37 40
         $base_url = 'https://api.namecheap.com/xml.response?&ApiUser=' . $account_username . '&ApiKey=' . $api_key . '&UserName=' . $account_username;
@@ -46,6 +49,9 @@  discard block
 block discarded – undo
46 49
         }
47 50
     }
48 51
 
52
+    /**
53
+     * @param string $full_url
54
+     */
49 55
     public function apiCall($full_url)
50 56
     {
51 57
         $handle = curl_init($full_url);
Please login to merge, or discard this patch.