From 135b9a681349d6f2ad8e93a783a374e73cf1b016 Mon Sep 17 00:00:00 2001 From: Phil Young Date: Tue, 15 Jun 2021 11:02:17 +0100 Subject: [PATCH] Update A Docblock PHPStorm pointed out that this was missing --- src/Endpoints/CustomHostnames.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Endpoints/CustomHostnames.php b/src/Endpoints/CustomHostnames.php index a7f09b0..8e6e3d8 100644 --- a/src/Endpoints/CustomHostnames.php +++ b/src/Endpoints/CustomHostnames.php @@ -14,7 +14,7 @@ use Cloudflare\API\Traits\BodyAccessorTrait; class CustomHostnames implements API { use BodyAccessorTrait; - + private $adapter; public function __construct(Adapter $adapter) @@ -125,6 +125,8 @@ class CustomHostnames implements API * @param string $hostnameID * @param string $sslMethod * @param string $sslType + * @param array $sslSettings + * @param string $customOriginServer * @return \stdClass */ public function updateHostname(string $zoneID, string $hostnameID, string $sslMethod = '', string $sslType = '', array $sslSettings = [], string $customOriginServer = ''): \stdClass