8000 Remove extra arg in call to TraceableAdapter::start() · symfony/symfony@a379319 · GitHub
[go: up one dir, main page]

Skip to content

Commit a379319

Browse files
committed
Remove extra arg in call to TraceableAdapter::start()
1 parent 7587213 commit a379319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Cache/Adapter/TraceableAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public function saveDeferred(CacheItemInterface $item)
107107
*/
108108
public function getItems(array $keys = array())
109109
{
110-
$event = $this->start(__FUNCTION__, $keys);
110+
$event = $this->start(__FUNCTION__);
111111
try {
112112
$result = $this->pool->getItems($keys);
113113
} finally {

0 commit comments

Comments
 (0)
0