Skip to content

Commit

Permalink
fix cs error and phpdoc error
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed Mar 17, 2022
1 parent e679fb1 commit b9f1a0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SymfonyCache/CacheEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

namespace FOS\HttpCache\SymfonyCache;

use Symfony\Contracts\EventDispatcher\Event as BaseEvent;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Contracts\EventDispatcher\Event as BaseEvent;

/**
* Event raised by the HttpCache kernel.
Expand Down Expand Up @@ -48,7 +48,7 @@ class CacheEvent extends BaseEvent
*
* @param CacheInvalidation $kernel the kernel raising with this event
* @param Request $request the request being processed
* @param Response $response the response, if available
* @param Response|null $response the response, if available
* @param int $requestType the request type (default HttpKernelInterface::MASTER_REQUEST)
*/
public function __construct(CacheInvalidation $kernel, Request $request, Response $response = null, $requestType = HttpKernelInterface::MASTER_REQUEST)
Expand Down

0 comments on commit b9f1a0b

Please sign in to comment.