From a3793198fa33c410489627a03fbb1ac8c7ecafe8 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Wed, 31 May 2017 13:48:12 +0200 Subject: [PATCH] Remove extra arg in call to TraceableAdapter::start() --- src/Symfony/Component/Cache/Adapter/TraceableAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php b/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php index 1ddf65b301..9959199f67 100644 --- a/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/TraceableAdapter.php @@ -107,7 +107,7 @@ class TraceableAdapter implements AdapterInterface */ public function getItems(array $keys = array()) { - $event = $this->start(__FUNCTION__, $keys); + $event = $this->start(__FUNCTION__); try { $result = $this->pool->getItems($keys); } finally {