Skip to content

Commit

Permalink
Remove redundant call
Browse files Browse the repository at this point in the history
  • Loading branch information
XedinUnknown committed Apr 26, 2024
1 parent 7e7fffe commit f1f33ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SimpleCacheContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function clear(): void
try {
$storage->clear();
} catch (Exception $e) {
throw new ContainerException(sprintf('Could not clear container'), 0, $e);
throw new ContainerException('Could not clear container', 0, $e);
}
}
}

0 comments on commit f1f33ab

Please sign in to comment.