@@ -30,8 +30,7 @@ discard block |
||
| 30 | 30 | if ($format != "xml" && $format != "json" && $format != "yaml" && $format != "simplexml") { |
| 31 | 31 | error_log("set_format requires that the format is xml, json, yaml or simplexml"); |
| 32 | 32 | return; |
| 33 | - } |
|
| 34 | - else { |
|
| 33 | + } else { |
|
| 35 | 34 | $this->format = $format; |
| 36 | 35 | } |
| 37 | 36 | } |
@@ -62,8 +61,7 @@ discard block |
||
| 62 | 61 | $result = $result[str_replace('.cgi', '', $function)]; |
| 63 | 62 | $result = $this->format_result($result); |
| 64 | 63 | return $result; |
| 65 | - } |
|
| 66 | - else { |
|
| 64 | + } else { |
|
| 67 | 65 | return $result; |
| 68 | 66 | } |
| 69 | 67 | } |
@@ -86,8 +84,7 @@ discard block |
||
| 86 | 84 | private function validateID ($id) { |
| 87 | 85 | if (preg_match("/^(L|P|G)?\d*$/", $id)) { |
| 88 | 86 | return 1; |
| 89 | - } |
|
| 90 | - else { |
|
| 87 | + } else { |
|
| 91 | 88 | return 0; |
| 92 | 89 | } |
| 93 | 90 | } |
@@ -271,11 +268,9 @@ discard block |
||
| 271 | 268 | $xml_obj = (array) $xml_obj; |
| 272 | 269 | if (array_key_exists("packages", $xml_obj)) { |
| 273 | 270 | $type = "packages"; |
| 274 | - } |
|
| 275 | - else if (array_key_exists("groups", $xml_obj)) { |
|
| 271 | + } else if (array_key_exists("groups", $xml_obj)) { |
|
| 276 | 272 | $type = "groups"; |
| 277 | - } |
|
| 278 | - else { |
|
| 273 | + } else { |
|
| 279 | 274 | error_log("cPanelLicensing::findKey with an object that is not groups or packages"); |
| 280 | 275 | return; |
| 281 | 276 | } |
@@ -7,23 +7,23 @@ discard block |
||
| 7 | 7 | public $curl; |
| 8 | 8 | public $opts; |
| 9 | 9 | |
| 10 | - public function __construct ($user, $pass) { |
|
| 10 | + public function __construct($user, $pass) { |
|
| 11 | 11 | $this->opts = []; |
| 12 | 12 | $this->format = "simplexml"; |
| 13 | 13 | $this->setCredentials($user, $pass); |
| 14 | - $this->setopt(CURLOPT_RETURNTRANSFER,1); |
|
| 15 | - $this->setopt(CURLOPT_USERAGENT, 'cPanel Licensing Agent (php) 3.5' ); |
|
| 14 | + $this->setopt(CURLOPT_RETURNTRANSFER, 1); |
|
| 15 | + $this->setopt(CURLOPT_USERAGENT, 'cPanel Licensing Agent (php) 3.5'); |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | public function setopt($option, $value) { |
| 19 | 19 | $this->opts[$option] = $value; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - public function setCredentials ($user, $pass) { |
|
| 22 | + public function setCredentials($user, $pass) { |
|
| 23 | 23 | $this->setopt(CURLOPT_USERPWD, $user . ":" . $pass); |
| 24 | 24 | } |
| 25 | 25 | |
| 26 | - public function set_format ($format) { |
|
| 26 | + public function set_format($format) { |
|
| 27 | 27 | if ($format != "xml" && $format != "json" && $format != "yaml" && $format != "simplexml") { |
| 28 | 28 | error_log("set_format requires that the format is xml, json, yaml or simplexml"); |
| 29 | 29 | return; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - private function get ($function, $args = array()) { |
|
| 36 | + private function get($function, $args = array()) { |
|
| 37 | 37 | if (!$function) { |
| 38 | 38 | error_log("cPanelLicensing::get requires that a function is defined"); |
| 39 | 39 | return; |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | return $result; |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - private function validateID ($id) { |
|
| 88 | + private function validateID($id) { |
|
| 89 | 89 | if (preg_match("/^(L|P|G)?\d*$/", $id)) { |
| 90 | 90 | return 1; |
| 91 | 91 | } |
@@ -94,11 +94,11 @@ discard block |
||
| 94 | 94 | } |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - private function validateIP ($ip) { |
|
| 97 | + private function validateIP($ip) { |
|
| 98 | 98 | return preg_match("/^\d*\.\d*\.\d*\.\d*$/", $ip); |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - public function reactivateLicense ($args) { |
|
| 101 | + public function reactivateLicense($args) { |
|
| 102 | 102 | if (!array_key_exists('liscid', $args)) { |
| 103 | 103 | error_log("cpanelLicensing::reactivateLicense requires that the argument array contains element liscid"); |
| 104 | 104 | return; |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | return $this->get("XMLlicenseReActivate.cgi", $args); |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - public function expireLicense ($args) { |
|
| 113 | + public function expireLicense($args) { |
|
| 114 | 114 | if (!array_key_exists("liscid", $args)) { |
| 115 | 115 | error_log("cPanelLicensing::expireLicense requires that liscid elements exists in the array passed to it"); |
| 116 | 116 | return; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | return $this->get("XMLlicenseExpire.cgi", $args); |
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - public function extendOnetimeUpdates ($args) { |
|
| 125 | + public function extendOnetimeUpdates($args) { |
|
| 126 | 126 | if (!array_key_exists("ip", $args)) { |
| 127 | 127 | error_log("cpanelLicensing::extendOnetimeUpdates requires that the element ip exists in the array is passed to it"); |
| 128 | 128 | return; |
@@ -131,10 +131,10 @@ discard block |
||
| 131 | 131 | error_log("cpanelLicensing::extendOnetimeUpdates was passed an invalid ip"); |
| 132 | 132 | return; |
| 133 | 133 | } |
| 134 | - return $this->get( "XMLonetimeext.cgi", $args ); |
|
| 134 | + return $this->get("XMLonetimeext.cgi", $args); |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - public function changeip ($args) { |
|
| 137 | + public function changeip($args) { |
|
| 138 | 138 | if (!array_key_exists("oldip", $args) || !array_key_exists("newip", $args)) { |
| 139 | 139 | error_log("cpanelLicensing::changeip requires that oldip and newip elements exist in the array passed to it"); |
| 140 | 140 | return; |
@@ -146,8 +146,8 @@ discard block |
||
| 146 | 146 | return $this->get("XMLtransfer.cgi", $args); |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - public function requestTransfer ($args) { |
|
| 150 | - if (!array_key_exists("ip", $args) || !array_key_exists("groupid", $args ) || !array_key_exists("packagegroup", $args)) { |
|
| 149 | + public function requestTransfer($args) { |
|
| 150 | + if (!array_key_exists("ip", $args) || !array_key_exists("groupid", $args) || !array_key_exists("packagegroup", $args)) { |
|
| 151 | 151 | error_log("cpanelLicensing::requestTransfer requires that ip, groupid and packageid elements exist in the array passed to it"); |
| 152 | 152 | return; |
| 153 | 153 | } |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | error_log("The groupid passed to cpanelLicensing::requestTransfer is invalid"); |
| 156 | 156 | return; |
| 157 | 157 | } |
| 158 | - if (!$this->validateID( $args["packageid"])) { |
|
| 158 | + if (!$this->validateID($args["packageid"])) { |
|
| 159 | 159 | error_log("The package id passed to cpanelLicensing::requestTransfer is invalid"); |
| 160 | 160 | return; |
| 161 | 161 | } |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | return $this->get("XMLtransferRequest.cgi", $args); |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - public function activateLicense ($args) { |
|
| 169 | + public function activateLicense($args) { |
|
| 170 | 170 | if (!array_key_exists("ip", $args) || !array_key_exists("groupid", $args) || !array_key_exists("packageid", $args)) { |
| 171 | 171 | error_log("cpanelLicensing::activateLicense requires that ip, groupid and packageid elements exist in the array passed to it"); |
| 172 | 172 | return; |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | return $this->get("XMLlicenseAdd.cgi", $args); |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - public function addPickupPass ($args) { |
|
| 190 | + public function addPickupPass($args) { |
|
| 191 | 191 | if (!array_key_exists("pickup", $args)) { |
| 192 | 192 | error_log("cPanelLicensing::addPickupPass requires a pickup param"); |
| 193 | 193 | return; |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | return $this->get("XMLaddPickupPass.cgi", $args); |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - public function registerAuth ($args) { |
|
| 198 | + public function registerAuth($args) { |
|
| 199 | 199 | if (!array_key_exists("user", $args)) { |
| 200 | 200 | error_log("cPanelLicensing::registerAuth requires a user param"); |
| 201 | 201 | return; |
@@ -215,11 +215,11 @@ discard block |
||
| 215 | 215 | return $response; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - public function fetchGroups () { |
|
| 218 | + public function fetchGroups() { |
|
| 219 | 219 | return $this->get("XMLgroupInfo.cgi"); |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - public function fetchLicenseRiskData ($args) { |
|
| 222 | + public function fetchLicenseRiskData($args) { |
|
| 223 | 223 | if (!array_key_exists("ip", $args)) { |
| 224 | 224 | error_log("cpanelLicensing::fetchLicenseRiskData requires that ip exists as an element in the array is passed to it"); |
| 225 | 225 | return; |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | return $this->get("XMLsecverify.cgi", $args); |
| 232 | 232 | } |
| 233 | 233 | |
| 234 | - public function fetchLicenseRaw ($args) { |
|
| 234 | + public function fetchLicenseRaw($args) { |
|
| 235 | 235 | $args = array_merge(array("all" => 1), $args); |
| 236 | 236 | if (!array_key_exists("ip", $args)) { |
| 237 | 237 | error_log("cpanelLicesning::fetchLicenseRaw requires that ip exists as an element in the array is passed to it"); |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | return $this->get("XMLRawlookup.cgi", $args); |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - public function fetchLicenseId ($args) { |
|
| 247 | + public function fetchLicenseId($args) { |
|
| 248 | 248 | $args = array_merge(array("all" => 1), $args); |
| 249 | 249 | if (!array_key_exists('ip', $args)) { |
| 250 | 250 | error_log("cpanelLicensing::getLicenseId requires that an IP is passed to it"); |
@@ -257,20 +257,20 @@ discard block |
||
| 257 | 257 | return $this->get("XMLlookup.cgi", $args); |
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - public function fetchPackages () { |
|
| 260 | + public function fetchPackages() { |
|
| 261 | 261 | return $this->get("XMLpackageInfo.cgi"); |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - public function fetchLicenses () { |
|
| 264 | + public function fetchLicenses() { |
|
| 265 | 265 | return $this->get("XMLlicenseInfo.cgi"); |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - public function fetchExpiredLicenses () { |
|
| 268 | + public function fetchExpiredLicenses() { |
|
| 269 | 269 | return $this->get("XMLlicenseInfo.cgi", array("expired" => '1')); |
| 270 | 270 | } |
| 271 | 271 | |
| 272 | - public function findKey ($search, $xml_obj) { |
|
| 273 | - $xml_obj = (array) $xml_obj; |
|
| 272 | + public function findKey($search, $xml_obj) { |
|
| 273 | + $xml_obj = (array)$xml_obj; |
|
| 274 | 274 | if (array_key_exists("packages", $xml_obj)) { |
| 275 | 275 | $type = "packages"; |
| 276 | 276 | } |
@@ -281,9 +281,9 @@ discard block |
||
| 281 | 281 | error_log("cPanelLicensing::findKey with an object that is not groups or packages"); |
| 282 | 282 | return; |
| 283 | 283 | } |
| 284 | - foreach ((array) $xml_obj[$type] as $element) { |
|
| 285 | - foreach ((array) $element as $key => $value) { |
|
| 286 | - if ((string) $value == $search) { |
|
| 284 | + foreach ((array)$xml_obj[$type] as $element) { |
|
| 285 | + foreach ((array)$element as $key => $value) { |
|
| 286 | + if ((string)$value == $search) { |
|
| 287 | 287 | return (string)$key; |
| 288 | 288 | } |
| 289 | 289 | } |
@@ -2,11 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | include("../cpl.inc.php"); |
| 4 | 4 | |
| 5 | -$cpl = new \Detain\Cpanel\Cpanel($_SERVER['argv'][1],$_SERVER['argv'][2]); |
|
| 5 | +$cpl = new \Detain\Cpanel\Cpanel($_SERVER['argv'][1], $_SERVER['argv'][2]); |
|
| 6 | 6 | |
| 7 | 7 | $licenses = $cpl->fetchExpiredLicenses(); |
| 8 | 8 | |
| 9 | -foreach ( $licenses->licenses as $lisc ) { |
|
| 9 | +foreach ($licenses->licenses as $lisc) { |
|
| 10 | 10 | $lisc = (array)$lisc; |
| 11 | 11 | print "\nLicense IP: " . $lisc['@attributes']['ip'] . "\n"; |
| 12 | 12 | print " ID: " . $lisc['@attributes']['name'] . "\n"; |
@@ -4,12 +4,12 @@ |
||
| 4 | 4 | |
| 5 | 5 | $ip = "__IP__"; |
| 6 | 6 | |
| 7 | -$lisc = (array)$cpl->fetchLicenseID( array("ip" => $ip) ); |
|
| 7 | +$lisc = (array)$cpl->fetchLicenseID(array("ip" => $ip)); |
|
| 8 | 8 | |
| 9 | 9 | $id = $lisc['@attributes']['licenseid']; |
| 10 | 10 | |
| 11 | -if ( $id > 0 ) { |
|
| 12 | - $result = (array)$cpl->reactivateLicense( array( 'liscid' => $id, reactivateok => 1 ) ); |
|
| 11 | +if ($id > 0) { |
|
| 12 | + $result = (array)$cpl->reactivateLicense(array('liscid' => $id, reactivateok => 1)); |
|
| 13 | 13 | } else { |
| 14 | 14 | print "no expired license exists for $ip\n"; |
| 15 | 15 | } |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | function_requirements('xml2array'); |
| 4 | 4 | include("../cpl.inc.php"); |
| 5 | 5 | |
| 6 | -$cpl = new \Detain\Cpanel\Cpanel($_SERVER['argv'][1],$_SERVER['argv'][2]); |
|
| 6 | +$cpl = new \Detain\Cpanel\Cpanel($_SERVER['argv'][1], $_SERVER['argv'][2]); |
|
| 7 | 7 | |
| 8 | 8 | $licenses = $cpl->fetchLicenses(); |
| 9 | 9 | print_r($licenses); |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | include("../cpl.inc.php"); |
| 3 | 3 | $cpl = new \Detain\Cpanel\Cpanel($_SERVER['argv'][1], $_SERVER['argv'][2]); |
| 4 | 4 | $ip = "__IP__"; |
| 5 | -$lisc = (array) $cpl->fetchLicenseId(array("ip" => $ip)); |
|
| 5 | +$lisc = (array)$cpl->fetchLicenseId(array("ip" => $ip)); |
|
| 6 | 6 | print_r($lisc); |
| 7 | 7 | $id = $lisc['licenseid']; |
| 8 | 8 | $id = is_array($id) ? $id[0] : $id; |
@@ -4,10 +4,10 @@ |
||
| 4 | 4 | |
| 5 | 5 | $ip = "__IP_TO_TRANSFER__"; |
| 6 | 6 | |
| 7 | -$group = $cpl->findKey("__GROUP_NAME__", $cpl->fetchGroups() ); |
|
| 8 | -$package = $cpl->findKey("__PACKAGE_NAME__", $cpl->fetchPackages() ); |
|
| 7 | +$group = $cpl->findKey("__GROUP_NAME__", $cpl->fetchGroups()); |
|
| 8 | +$package = $cpl->findKey("__PACKAGE_NAME__", $cpl->fetchPackages()); |
|
| 9 | 9 | |
| 10 | -$result = (array)$cpl->requestTransfer( array( |
|
| 10 | +$result = (array)$cpl->requestTransfer(array( |
|
| 11 | 11 | "ip" => $ip, |
| 12 | 12 | "groupid" => $group, |
| 13 | 13 | "packageid" => $package |
@@ -2,12 +2,12 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | include("../cpl.inc.php"); |
| 4 | 4 | |
| 5 | -$cpl = new \Detain\Cpanel\Cpanel( $_SERVER['argv'][1], $_SERVER['argv'][2] ); |
|
| 5 | +$cpl = new \Detain\Cpanel\Cpanel($_SERVER['argv'][1], $_SERVER['argv'][2]); |
|
| 6 | 6 | |
| 7 | 7 | $ip = "__IP__"; |
| 8 | 8 | |
| 9 | -$groupid = $cpl->findKey("__GROUPNAME__", $cpl->fetchGroups() ); |
|
| 10 | -$packageid = $cpl->findKey("__PACKAGENAME__", $cpl->fetchPackages() ); |
|
| 9 | +$groupid = $cpl->findKey("__GROUPNAME__", $cpl->fetchGroups()); |
|
| 10 | +$packageid = $cpl->findKey("__PACKAGENAME__", $cpl->fetchPackages()); |
|
| 11 | 11 | |
| 12 | 12 | $lisc = (array)$cpl->activateLicense(array( |
| 13 | 13 | "ip" => $ip, |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | ); |
| 22 | 22 | |
| 23 | 23 | if ($lisc['@attributes']['status'] > 0) { |
| 24 | - print "license added with id: ". $lisc['@attributes']['licenseid'] . "\n"; |
|
| 24 | + print "license added with id: " . $lisc['@attributes']['licenseid'] . "\n"; |
|
| 25 | 25 | } else { |
| 26 | 26 | print "License add failed: " . $lisc['@attributes']['reason'] . "\n"; |
| 27 | 27 | } |
@@ -4,10 +4,10 @@ |
||
| 4 | 4 | |
| 5 | 5 | $ip = "__IP__"; |
| 6 | 6 | |
| 7 | -$lisc = (array)$cpl->fetchLicenseId( array( "ip" => $ip ) ); |
|
| 7 | +$lisc = (array)$cpl->fetchLicenseId(array("ip" => $ip)); |
|
| 8 | 8 | $liscid = $lisc["@attributes"]["licenseid"]; |
| 9 | 9 | |
| 10 | -if ( $liscid > 0 ) { |
|
| 10 | +if ($liscid > 0) { |
|
| 11 | 11 | $expire = (array)$cpl->expireLicense(array( |
| 12 | 12 | liscid => $liscid, |
| 13 | 13 | reason => "Automagic Expiration", |
@@ -2,8 +2,7 @@ discard block |
||
| 2 | 2 | /** |
| 3 | 3 | * Generated by PHPUnit_SkeletonGenerator on 2017-06-16 at 14:19:40. |
| 4 | 4 | */ |
| 5 | -class CpanelTest extends PHPUnit_Framework_TestCase |
|
| 6 | -{ |
|
| 5 | +class CpanelTest extends PHPUnit_Framework_TestCase { |
|
| 7 | 6 | /** |
| 8 | 7 | * @var Cpanel |
| 9 | 8 | */ |
@@ -13,8 +12,7 @@ discard block |
||
| 13 | 12 | * Sets up the fixture, for example, opens a network connection. |
| 14 | 13 | * This method is called before a test is executed. |
| 15 | 14 | */ |
| 16 | - protected function setUp() |
|
| 17 | - { |
|
| 15 | + protected function setUp() { |
|
| 18 | 16 | $this->object = new Cpanel; |
| 19 | 17 | } |
| 20 | 18 | |
@@ -22,16 +20,14 @@ discard block |
||
| 22 | 20 | * Tears down the fixture, for example, closes a network connection. |
| 23 | 21 | * This method is called after a test is executed. |
| 24 | 22 | */ |
| 25 | - protected function tearDown() |
|
| 26 | - { |
|
| 23 | + protected function tearDown() { |
|
| 27 | 24 | } |
| 28 | 25 | |
| 29 | 26 | /** |
| 30 | 27 | * @covers Detain\Cpanel\Cpanel::setopt |
| 31 | 28 | * @todo Implement testSetopt(). |
| 32 | 29 | */ |
| 33 | - public function testSetopt() |
|
| 34 | - { |
|
| 30 | + public function testSetopt() { |
|
| 35 | 31 | // Remove the following lines when you implement this test. |
| 36 | 32 | $this->markTestIncomplete( |
| 37 | 33 | 'This test has not been implemented yet.' |
@@ -42,8 +38,7 @@ discard block |
||
| 42 | 38 | * @covers Detain\Cpanel\Cpanel::setCredentials |
| 43 | 39 | * @todo Implement testSetCredentials(). |
| 44 | 40 | */ |
| 45 | - public function testSetCredentials() |
|
| 46 | - { |
|
| 41 | + public function testSetCredentials() { |
|
| 47 | 42 | // Remove the following lines when you implement this test. |
| 48 | 43 | $this->markTestIncomplete( |
| 49 | 44 | 'This test has not been implemented yet.' |
@@ -54,8 +49,7 @@ discard block |
||
| 54 | 49 | * @covers Detain\Cpanel\Cpanel::set_format |
| 55 | 50 | * @todo Implement testSet_format(). |
| 56 | 51 | */ |
| 57 | - public function testSet_format() |
|
| 58 | - { |
|
| 52 | + public function testSet_format() { |
|
| 59 | 53 | // Remove the following lines when you implement this test. |
| 60 | 54 | $this->markTestIncomplete( |
| 61 | 55 | 'This test has not been implemented yet.' |
@@ -66,8 +60,7 @@ discard block |
||
| 66 | 60 | * @covers Detain\Cpanel\Cpanel::reactivateLicense |
| 67 | 61 | * @todo Implement testReactivateLicense(). |
| 68 | 62 | */ |
| 69 | - public function testReactivateLicense() |
|
| 70 | - { |
|
| 63 | + public function testReactivateLicense() { |
|
| 71 | 64 | // Remove the following lines when you implement this test. |
| 72 | 65 | $this->markTestIncomplete( |
| 73 | 66 | 'This test has not been implemented yet.' |
@@ -78,8 +71,7 @@ discard block |
||
| 78 | 71 | * @covers Detain\Cpanel\Cpanel::expireLicense |
| 79 | 72 | * @todo Implement testExpireLicense(). |
| 80 | 73 | */ |
| 81 | - public function testExpireLicense() |
|
| 82 | - { |
|
| 74 | + public function testExpireLicense() { |
|
| 83 | 75 | // Remove the following lines when you implement this test. |
| 84 | 76 | $this->markTestIncomplete( |
| 85 | 77 | 'This test has not been implemented yet.' |
@@ -90,8 +82,7 @@ discard block |
||
| 90 | 82 | * @covers Detain\Cpanel\Cpanel::extendOnetimeUpdates |
| 91 | 83 | * @todo Implement testExtendOnetimeUpdates(). |
| 92 | 84 | */ |
| 93 | - public function testExtendOnetimeUpdates() |
|
| 94 | - { |
|
| 85 | + public function testExtendOnetimeUpdates() { |
|
| 95 | 86 | // Remove the following lines when you implement this test. |
| 96 | 87 | $this->markTestIncomplete( |
| 97 | 88 | 'This test has not been implemented yet.' |
@@ -102,8 +93,7 @@ discard block |
||
| 102 | 93 | * @covers Detain\Cpanel\Cpanel::changeip |
| 103 | 94 | * @todo Implement testChangeip(). |
| 104 | 95 | */ |
| 105 | - public function testChangeip() |
|
| 106 | - { |
|
| 96 | + public function testChangeip() { |
|
| 107 | 97 | // Remove the following lines when you implement this test. |
| 108 | 98 | $this->markTestIncomplete( |
| 109 | 99 | 'This test has not been implemented yet.' |
@@ -114,8 +104,7 @@ discard block |
||
| 114 | 104 | * @covers Detain\Cpanel\Cpanel::requestTransfer |
| 115 | 105 | * @todo Implement testRequestTransfer(). |
| 116 | 106 | */ |
| 117 | - public function testRequestTransfer() |
|
| 118 | - { |
|
| 107 | + public function testRequestTransfer() { |
|
| 119 | 108 | // Remove the following lines when you implement this test. |
| 120 | 109 | $this->markTestIncomplete( |
| 121 | 110 | 'This test has not been implemented yet.' |
@@ -126,8 +115,7 @@ discard block |
||
| 126 | 115 | * @covers Detain\Cpanel\Cpanel::activateLicense |
| 127 | 116 | * @todo Implement testActivateLicense(). |
| 128 | 117 | */ |
| 129 | - public function testActivateLicense() |
|
| 130 | - { |
|
| 118 | + public function testActivateLicense() { |
|
| 131 | 119 | // Remove the following lines when you implement this test. |
| 132 | 120 | $this->markTestIncomplete( |
| 133 | 121 | 'This test has not been implemented yet.' |
@@ -138,8 +126,7 @@ discard block |
||
| 138 | 126 | * @covers Detain\Cpanel\Cpanel::addPickupPass |
| 139 | 127 | * @todo Implement testAddPickupPass(). |
| 140 | 128 | */ |
| 141 | - public function testAddPickupPass() |
|
| 142 | - { |
|
| 129 | + public function testAddPickupPass() { |
|
| 143 | 130 | // Remove the following lines when you implement this test. |
| 144 | 131 | $this->markTestIncomplete( |
| 145 | 132 | 'This test has not been implemented yet.' |
@@ -150,8 +137,7 @@ discard block |
||
| 150 | 137 | * @covers Detain\Cpanel\Cpanel::registerAuth |
| 151 | 138 | * @todo Implement testRegisterAuth(). |
| 152 | 139 | */ |
| 153 | - public function testRegisterAuth() |
|
| 154 | - { |
|
| 140 | + public function testRegisterAuth() { |
|
| 155 | 141 | // Remove the following lines when you implement this test. |
| 156 | 142 | $this->markTestIncomplete( |
| 157 | 143 | 'This test has not been implemented yet.' |
@@ -162,8 +148,7 @@ discard block |
||
| 162 | 148 | * @covers Detain\Cpanel\Cpanel::fetchGroups |
| 163 | 149 | * @todo Implement testFetchGroups(). |
| 164 | 150 | */ |
| 165 | - public function testFetchGroups() |
|
| 166 | - { |
|
| 151 | + public function testFetchGroups() { |
|
| 167 | 152 | // Remove the following lines when you implement this test. |
| 168 | 153 | $this->markTestIncomplete( |
| 169 | 154 | 'This test has not been implemented yet.' |
@@ -174,8 +159,7 @@ discard block |
||
| 174 | 159 | * @covers Detain\Cpanel\Cpanel::fetchLicenseRiskData |
| 175 | 160 | * @todo Implement testFetchLicenseRiskData(). |
| 176 | 161 | */ |
| 177 | - public function testFetchLicenseRiskData() |
|
| 178 | - { |
|
| 162 | + public function testFetchLicenseRiskData() { |
|
| 179 | 163 | // Remove the following lines when you implement this test. |
| 180 | 164 | $this->markTestIncomplete( |
| 181 | 165 | 'This test has not been implemented yet.' |
@@ -186,8 +170,7 @@ discard block |
||
| 186 | 170 | * @covers Detain\Cpanel\Cpanel::fetchLicenseRaw |
| 187 | 171 | * @todo Implement testFetchLicenseRaw(). |
| 188 | 172 | */ |
| 189 | - public function testFetchLicenseRaw() |
|
| 190 | - { |
|
| 173 | + public function testFetchLicenseRaw() { |
|
| 191 | 174 | // Remove the following lines when you implement this test. |
| 192 | 175 | $this->markTestIncomplete( |
| 193 | 176 | 'This test has not been implemented yet.' |
@@ -198,8 +181,7 @@ discard block |
||
| 198 | 181 | * @covers Detain\Cpanel\Cpanel::fetchLicenseId |
| 199 | 182 | * @todo Implement testFetchLicenseId(). |
| 200 | 183 | */ |
| 201 | - public function testFetchLicenseId() |
|
| 202 | - { |
|
| 184 | + public function testFetchLicenseId() { |
|
| 203 | 185 | // Remove the following lines when you implement this test. |
| 204 | 186 | $this->markTestIncomplete( |
| 205 | 187 | 'This test has not been implemented yet.' |
@@ -210,8 +192,7 @@ discard block |
||
| 210 | 192 | * @covers Detain\Cpanel\Cpanel::fetchPackages |
| 211 | 193 | * @todo Implement testFetchPackages(). |
| 212 | 194 | */ |
| 213 | - public function testFetchPackages() |
|
| 214 | - { |
|
| 195 | + public function testFetchPackages() { |
|
| 215 | 196 | // Remove the following lines when you implement this test. |
| 216 | 197 | $this->markTestIncomplete( |
| 217 | 198 | 'This test has not been implemented yet.' |
@@ -222,8 +203,7 @@ discard block |
||
| 222 | 203 | * @covers Detain\Cpanel\Cpanel::fetchLicenses |
| 223 | 204 | * @todo Implement testFetchLicenses(). |
| 224 | 205 | */ |
| 225 | - public function testFetchLicenses() |
|
| 226 | - { |
|
| 206 | + public function testFetchLicenses() { |
|
| 227 | 207 | // Remove the following lines when you implement this test. |
| 228 | 208 | $this->markTestIncomplete( |
| 229 | 209 | 'This test has not been implemented yet.' |
@@ -234,8 +214,7 @@ discard block |
||
| 234 | 214 | * @covers Detain\Cpanel\Cpanel::fetchExpiredLicenses |
| 235 | 215 | * @todo Implement testFetchExpiredLicenses(). |
| 236 | 216 | */ |
| 237 | - public function testFetchExpiredLicenses() |
|
| 238 | - { |
|
| 217 | + public function testFetchExpiredLicenses() { |
|
| 239 | 218 | // Remove the following lines when you implement this test. |
| 240 | 219 | $this->markTestIncomplete( |
| 241 | 220 | 'This test has not been implemented yet.' |
@@ -246,8 +225,7 @@ discard block |
||
| 246 | 225 | * @covers Detain\Cpanel\Cpanel::findKey |
| 247 | 226 | * @todo Implement testFindKey(). |
| 248 | 227 | */ |
| 249 | - public function testFindKey() |
|
| 250 | - { |
|
| 228 | + public function testFindKey() { |
|
| 251 | 229 | // Remove the following lines when you implement this test. |
| 252 | 230 | $this->markTestIncomplete( |
| 253 | 231 | 'This test has not been implemented yet.' |