invoiceninja/app/Http/Requests/Twilio/GenerateSmsRequest.php

36 lines
705 B
PHP
Raw Permalink Normal View History

2022-07-27 11:21:12 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2022-07-27 11:21:12 +10:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\Twilio;
use App\Http\Requests\Request;
class GenerateSmsRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
2022-11-26 12:21:03 +11:00
return true;
2022-07-27 11:21:12 +10:00
}
public function rules()
{
return [
2022-07-27 23:12:36 +10:00
'phone' => 'required|regex:^\+[1-9]\d{1,14}$^',
2022-07-27 11:21:12 +10:00
];
}
}