From 76f83e265c894f0d329336386de0f8f88be3b166 Mon Sep 17 00:00:00 2001 From: SiriusV Date: Fri, 15 Nov 2024 10:07:07 +0000 Subject: [PATCH] Fix styling --- src/Storage/OctaneCache.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Storage/OctaneCache.php b/src/Storage/OctaneCache.php index aa5a3d8..1ba4b5e 100644 --- a/src/Storage/OctaneCache.php +++ b/src/Storage/OctaneCache.php @@ -472,8 +472,7 @@ public function wipeStorage(): void private function clearTable(Table $table): void { $table->rewind(); - while ($table->valid()) - { + while ($table->valid()) { $table->del($table->key()); $table->next(); }