Skip to content

Commit 1bab91b

Browse files
authored
Merge pull request #68 from smoench/patch-2
Align `BrefKernel::handle` method signature with the `Symfony\Component\HttpKernel\HttpKernelInterface`
2 parents 0b2ecdb + 4ccdd5d commit 1bab91b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/BrefKernel.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Bref\SymfonyBridge;
44

55
use Symfony\Component\Filesystem\Filesystem;
6+
use Symfony\Component\HttpFoundation\Request;
67
use Symfony\Component\HttpFoundation\Response;
78
use Symfony\Component\HttpKernel\HttpKernelInterface;
89
use Symfony\Component\HttpKernel\Kernel;
@@ -41,7 +42,7 @@ public function getLogDir(): string
4142
*
4243
* @see https://github.com/brefphp/symfony-bridge/pull/37
4344
*/
44-
public function handle($request, $type = HttpKernelInterface::MAIN_REQUEST, $catch = true): Response
45+
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response
4546
{
4647
$this->prepareCacheDir(parent::getCacheDir(), $this->getCacheDir());
4748

0 commit comments

Comments
 (0)