mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 09:44:04 +01:00
22 lines
413 B
PHP
22 lines
413 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Laragear\WebAuthn\Http\Requests\AssertedRequest;
|
|
|
|
class WebauthnAssertedRequest extends AssertedRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*/
|
|
public function rules() : array
|
|
{
|
|
return array_merge(
|
|
[
|
|
'email' => 'required|email',
|
|
],
|
|
parent::rules()
|
|
);
|
|
}
|
|
}
|