| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Models; |
| 4 |
|
| 5 |
use App\Billingo\Contracts\ValidableInterface; |
| 6 |
use App\Billingo\Validation\SendDocumentValidator; |
| 7 |
|
| 8 |
/** |
| 9 |
* @property string[] $emails |
| 10 |
*/ |
| 11 |
class SendDocument extends BillingoModel |
| 12 |
{ |
| 13 |
|
| 14 |
protected function getValidator(): ValidableInterface |
| 15 |
{ |
| 16 |
return new SendDocumentValidator(); |
| 17 |
} |
| 18 |
} |
| 19 |
|