Remove extra arg in call to TraceableAdapter::start()

This commit is contained in:
Robin Chalas 2017-05-31 13:48:12 +02:00
parent 7587213ef5
commit a3793198fa

View File

@ -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 {