Remove an unused argument.

This commit is contained in:
Jakub Zalas 2014-03-31 22:49:46 +01:00
parent b094ea7fe2
commit 8882dad46e
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ class HttpCache implements HttpKernelInterface, TerminableInterface
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) {