Skip to content

Commit

Permalink
Coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
uphlewis committed Dec 22, 2024
1 parent f6416a8 commit a19c04b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/CentosWeb/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public function makeRequest(
return $this->parseResponseData($result);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
*/
Expand Down Expand Up @@ -135,7 +134,6 @@ public function createAccount(CreateParams $params, string $username, bool $asRe
$this->makeRequest('account', $body);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand All @@ -156,7 +154,6 @@ public function getAccountData(string $username, bool $asReseller): array
];
}


/**
* @throws \GuzzleHttp\Exception\GuzzleException
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
Expand Down Expand Up @@ -185,7 +182,6 @@ public function getUserDetails(string $username, bool $asReseller): ?array
]);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand All @@ -207,7 +203,6 @@ public function getAccountUsage(string $username, bool $asReseller): UsageData
->setBandwidthMb($bandwidth);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand All @@ -222,7 +217,6 @@ public function suspendAccount(string $username): void
$this->makeRequest('account', $body);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand All @@ -237,7 +231,6 @@ public function unsuspendAccount(string $username): void
$this->makeRequest('account', $body);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand All @@ -252,7 +245,6 @@ public function deleteAccount(string $username): void
$this->makeRequest('account', $body);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand All @@ -268,7 +260,6 @@ public function updatePassword(string $username, string $password): void
$this->makeRequest('changepass', $body);
}


/**
* @param string|int $package
*
Expand All @@ -286,7 +277,6 @@ public function updatePackage(string $username, $package): void
$this->makeRequest('changepack', $body);
}


/**
* @throws \Upmind\ProvisionBase\Exception\ProvisionFunctionError
* @throws \RuntimeException
Expand Down

0 comments on commit a19c04b

Please sign in to comment.