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

Skip to content

Commit 5473373

Browse files
minor #22989 [Cache] Remove extra arg in call to TraceableAdapter::start() (chalasr)
This PR was merged into the 3.3 branch. Discussion ---------- [Cache] Remove extra arg in call to TraceableAdapter::start() | Q | A | ------------- | --- | Branch? | 3.3 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Leftover from previous implementation Commits ------- a379319 Remove extra arg in call to TraceableAdapter::start()
2 parents 7587213 + a379319 commit 5473373

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)