Update helpers.stubphp

fixes #240
This commit is contained in:
feek 2022-11-01 15:57:40 -04:00 committed by GitHub
parent e56a90f322
commit 39e4241061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,3 +127,12 @@ function logger($message = null, array $context = [])
* @return ($key is null ? \Illuminate\Config\Repository : ($key is array ? null : mixed)) * @return ($key is null ? \Illuminate\Config\Repository : ($key is array ? null : mixed))
*/ */
function config($key = null, $default = null) {} function config($key = null, $default = null) {}
/**
* Get an instance of the current request or an input item from the request.
*
* @param string[]|string|null $key
* @param mixed $default
* @return ($key is null ? \Illuminate\Http\Request : ($key is array ? string[] : mixed))
*/
function request($key = null, $default = null) {}