Skip to content

Commit

Permalink
minor #22989 [Cache] Remove extra arg in call to TraceableAdapter::st…
Browse files Browse the repository at this point in the history
…art() (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()
  • Loading branch information
nicolas-grekas committed May 31, 2017
2 parents 7587213 + a379319 commit 5473373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Cache/Adapter/TraceableAdapter.php
Expand Up @@ -107,7 +107,7 @@ public function saveDeferred(CacheItemInterface $item)
*/
public function getItems(array $keys = array())
{
$event = $this->start(__FUNCTION__, $keys);
$event = $this->start(__FUNCTION__);
try {
$result = $this->pool->getItems($keys);
} finally {
Expand Down

0 comments on commit 5473373

Please sign in to comment.