From 5a84880249acd4e2bf405819a0b2526a84c69bcc Mon Sep 17 00:00:00 2001 From: BJ Hansen Date: Fri, 21 Jun 2024 13:44:56 -0500 Subject: [PATCH] Code cleanup --- src/Api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Api.php b/src/Api.php index 5e9bf36..daad074 100644 --- a/src/Api.php +++ b/src/Api.php @@ -81,9 +81,9 @@ public function clearCache(): bool|self { if($this->cache->clear()) { return $this; - } else { - return false; } + + return false; } public function setTimezone(string $timezone): self