Skip to content

Commit

Permalink
Fix typehints (#31806)
Browse files Browse the repository at this point in the history
driesvints authored Mar 6, 2020

Verified

This commit was signed with the committer’s verified signature.
Aaron1011 Aaron Hill
1 parent 68ec618 commit 9c1c839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
@@ -901,7 +901,7 @@ protected function fireAppCallbacks(array $callbacks)
/**
* {@inheritdoc}
*/
public function handle(SymfonyRequest $request, $type = self::MASTER_REQUEST, $catch = true)
public function handle(SymfonyRequest $request, int $type = self::MASTER_REQUEST, bool $catch = true)
{
return $this[HttpKernelContract::class]->handle(Request::createFromBase($request));
}

0 comments on commit 9c1c839

Please sign in to comment.