| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Validation\DocumentExport; |
| 4 |
|
| 5 |
use App\Billingo\Validation\Validator; |
| 6 |
|
| 7 |
class LedgerNumberInformationValidator extends Validator |
| 8 |
{ |
| 9 |
|
| 10 |
protected function rules(): array |
| 11 |
{ |
| 12 |
return [ |
| 13 |
'bevetel' => ['optional', 'string'], |
| 14 |
'vevo' => ['optional', 'string'], |
| 15 |
'penztar' => ['optional', 'string'], |
| 16 |
'afa' => ['optional', 'string'], |
| 17 |
]; |
| 18 |
} |
| 19 |
} |
| 20 |
|