remove whitespace after doc return
This commit is contained in:
@@ -17,7 +17,7 @@ class Crypto implements API
|
||||
* Get the Opportunistic Encryption feature for a zone.
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return string|false
|
||||
* @return string|false
|
||||
*/
|
||||
public function getOpportunisticEncryptionSetting(string $zoneID)
|
||||
{
|
||||
@@ -35,7 +35,7 @@ class Crypto implements API
|
||||
* Get the Onion Routing feature for a zone.
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return string|false
|
||||
* @return string|false
|
||||
*/
|
||||
public function getOnionRoutingSetting(string $zoneID)
|
||||
{
|
||||
@@ -54,7 +54,7 @@ class Crypto implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $value The value of the zone setting
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function updateOpportunisticEncryptionSetting(string $zoneID, string $value)
|
||||
{
|
||||
@@ -76,7 +76,7 @@ class Crypto implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $value The value of the zone setting
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function updateOnionRoutingSetting(string $zoneID, string $value)
|
||||
{
|
||||
|
||||
@@ -17,7 +17,7 @@ class SSL implements API
|
||||
* Get the SSL setting for the zone
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return string|false
|
||||
* @return string|false
|
||||
*/
|
||||
public function getSSLSetting(string $zoneID)
|
||||
{
|
||||
@@ -35,7 +35,7 @@ class SSL implements API
|
||||
* Get SSL Verification Info for a Zone
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return array|false
|
||||
* @return array|false
|
||||
*/
|
||||
public function getSSLVerificationStatus(string $zoneID)
|
||||
{
|
||||
@@ -53,7 +53,7 @@ class SSL implements API
|
||||
* Get the HTTPS Redirect setting for the zone
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return string|false
|
||||
* @return string|false
|
||||
*/
|
||||
public function getHTTPSRedirectSetting(string $zoneID)
|
||||
{
|
||||
@@ -71,7 +71,7 @@ class SSL implements API
|
||||
* Get the HTTPS Rewrite setting for the zone
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return string|false
|
||||
* @return string|false
|
||||
*/
|
||||
public function getHTTPSRewritesSetting(string $zoneID)
|
||||
{
|
||||
@@ -90,7 +90,7 @@ class SSL implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $value The value of the zone setting
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function updateSSLSetting(string $zoneID, string $value)
|
||||
{
|
||||
@@ -112,7 +112,7 @@ class SSL implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $value The value of the zone setting
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function updateHTTPSRedirectSetting(string $zoneID, string $value)
|
||||
{
|
||||
@@ -134,7 +134,7 @@ class SSL implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $value The value of the zone setting
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function updateHTTPSRewritesSetting(string $zoneID, string $value)
|
||||
{
|
||||
|
||||
@@ -41,7 +41,7 @@ class TLS implements API
|
||||
* Enable TLS 1.3 for the zone
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function enableTLS13($zoneID)
|
||||
{
|
||||
@@ -60,7 +60,7 @@ class TLS implements API
|
||||
* Disable TLS 1.3 for the zone
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function disableTLS13($zoneID)
|
||||
{
|
||||
@@ -80,7 +80,7 @@ class TLS implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $minimumVersion The version to update to
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function changeMinimumTLSVersion($zoneID, $minimumVersion)
|
||||
{
|
||||
@@ -102,7 +102,7 @@ class TLS implements API
|
||||
*
|
||||
* @param string $zoneID The ID of the zone
|
||||
* @param string $value The value of the zone setting
|
||||
* @return bool
|
||||
* @return bool
|
||||
*/
|
||||
public function updateTLSClientAuth($zoneID, $value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user