Owl\Http\Requests\AuthAttemptRequest::rules PHP Method

rules() public method

Get the validation rules that apply to the request.
public rules ( ) : array
return array
    public function rules()
    {
        return ['username' => 'required|alpha_num|max:30', 'password' => 'required|alpha_num|min:4'];
    }
AuthAttemptRequest