From 1764856f5b420990f6991221705bdfdc75d3f34d Mon Sep 17 00:00:00 2001 From: Michael Markoski Date: Sat, 25 May 2019 15:25:53 -0500 Subject: [PATCH] remove whitespace after doc return --- src/Endpoints/Crypto.php | 8 ++++---- src/Endpoints/SSL.php | 14 +++++++------- src/Endpoints/TLS.php | 8 ++++---- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Endpoints/Crypto.php b/src/Endpoints/Crypto.php index 94df3bb..e785c54 100644 --- a/src/Endpoints/Crypto.php +++ b/src/Endpoints/Crypto.php @@ -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) { diff --git a/src/Endpoints/SSL.php b/src/Endpoints/SSL.php index 50d56b3..ae3c859 100644 --- a/src/Endpoints/SSL.php +++ b/src/Endpoints/SSL.php @@ -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) { diff --git a/src/Endpoints/TLS.php b/src/Endpoints/TLS.php index b6ca671..ec08ed2 100644 --- a/src/Endpoints/TLS.php +++ b/src/Endpoints/TLS.php @@ -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) {