Efficiently\AuthorityController\Parameters::specialInputKeys PHP Method

specialInputKeys() protected method

For exmaple '_method' and '_token' inputs
protected specialInputKeys ( array $inputKeys = [] ) : array
$inputKeys array
return array
    protected function specialInputKeys($inputKeys = [])
    {
        $inputKeys = $inputKeys ?: array_keys(request()->all());
        return array_filter($inputKeys, function ($value) {
            return is_string($value) ? starts_with($value, '_') : false;
        });
    }