first commit
This commit is contained in:
33
app/Request/Test.php
Executable file
33
app/Request/Test.php
Executable file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Request;
|
||||
|
||||
use Hyperf\Validation\Request\FormRequest;
|
||||
|
||||
class Test extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'password' => 'required'
|
||||
];
|
||||
}
|
||||
|
||||
public function validationData(): array
|
||||
{
|
||||
return $this->getParsedBody();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user