mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
24 lines
451 B
Plaintext
24 lines
451 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Http\Concerns;
|
|
|
|
use Illuminate\Http\UploadedFile;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Str;
|
|
use SplFileInfo;
|
|
use stdClass;
|
|
|
|
trait InteractsWithInput
|
|
{
|
|
/**
|
|
* Retrieve an input item from the request.
|
|
*
|
|
* @param string|null $key
|
|
* @param mixed $default
|
|
* @return mixed
|
|
*
|
|
* @psalm-taint-source input
|
|
*/
|
|
public function input($key = null, $default = null) { }
|
|
}
|