Initial Spark Install
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Spark\Http\Requests\Settings\Security;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class EnableTwoFactorAuthRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function authorize()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
'country_code' => 'required|numeric',
|
||||
'phone' => 'required|numeric',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get data to be validated from the request.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function validationData()
|
||||
{
|
||||
if ($this->phone) {
|
||||
$this->merge(['phone' => preg_replace('/[^0-9]/', '', $this->phone)]);
|
||||
}
|
||||
|
||||
return $this->all();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user