diff --git a/src/Endpoints/Zones.php b/src/Endpoints/Zones.php index 609f480..59984e5 100644 --- a/src/Endpoints/Zones.php +++ b/src/Endpoints/Zones.php @@ -217,6 +217,8 @@ public function setCachingLevel(string $zoneID, string $level = 'aggressive'): b * Purge Everything * @param string $zoneID * @return bool + * + * @SuppressWarnings(PHPMD) */ public function cachePurgeEverything(string $zoneID, bool $includeEnvironments = false): bool { @@ -238,6 +240,9 @@ public function cachePurgeEverything(string $zoneID, bool $includeEnvironments = return false; } + /* + * @SuppressWarnings(PHPMD) + **/ public function cachePurge(string $zoneID, array $files = null, array $tags = null, array $hosts = null, bool $includeEnvironments = false): bool { if ($files === null && $tags === null && $hosts === null) {