Skip to content

Commit

Permalink
Remove an unused argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakzal committed Mar 31, 2014
1 parent fa6dceb commit 3b7d61e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HttpCache/HttpCache.php
Expand Up @@ -522,7 +522,7 @@ protected function isFreshEnough(Request $request, Response $entry)
protected function lock(Request $request, Response $entry)
{
// try to acquire a lock to call the backend
$lock = $this->store->lock($request, $entry);
$lock = $this->store->lock($request);

// there is already another process calling the backend
if (true !== $lock) {
Expand Down

0 comments on commit 3b7d61e

Please sign in to comment.