Skip to content

Commit e8f9a70

Browse files
committed
[13.x] Remove Illuminate\Http\Request::get() override.
The parent method was removed in Symfony 8 via symfony/symfony#61983 Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 0ec53ba commit e8f9a70

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/Illuminate/Http/Request.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -424,21 +424,6 @@ public function replace(array $input)
424424
return $this;
425425
}
426426

427-
/**
428-
* This method belongs to Symfony HttpFoundation and is not usually needed when using Laravel.
429-
*
430-
* Instead, you may use the "input" method.
431-
*
432-
* @param string $key
433-
* @param mixed $default
434-
* @return mixed
435-
*/
436-
#[\Override]
437-
public function get(string $key, mixed $default = null): mixed
438-
{
439-
return parent::get($key, $default);
440-
}
441-
442427
/**
443428
* Get the JSON payload for the request.
444429
*

0 commit comments

Comments
 (0)