8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 932a4f8 commit 15a8610Copy full SHA for 15a8610
src/Symfony/Component/Cache/Adapter/TraceableAdapter.php
@@ -191,15 +191,11 @@ public function prune()
191
*/
192
public function reset()
193
{
194
- if (!$this->pool instanceof ResettableInterface) {
195
- return;
196
- }
197
- $event = $this->start(__FUNCTION__);
198
- try {
+ if ($this->pool instanceof ResettableInterface) {
199
$this->pool->reset();
200
- } finally {
201
- $event->end = microtime(true);
202
}
+
+ $this->clearCalls();
203
204
205
public function getCalls()
0 commit comments