Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/DDEV-1965' into DDEV-1965
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Davydenko committed Nov 18, 2024
2 parents 508c52d + 76f83e2 commit fe662f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Storage/OctaneCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,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();
}
Expand Down

0 comments on commit fe662f4

Please sign in to comment.