Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Cache][WebProfiler] fix collecting cache stats with sub-requests
  • Loading branch information
dmaicher committed Feb 7, 2018
commit 6f7c0fcdb005737391d24a55b324f11d480fedc3
6 changes: 1 addition & 5 deletions src/Symfony/Component/Cache/Adapter/TraceableAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,7 @@ public function commit()

public function getCalls()
{
try {
return $this->calls;
} finally {
$this->calls = array();
}
return $this->calls;
}

protected function start($name)
Expand Down