| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Models\DocumentExport; |
| 4 |
|
| 5 |
use App\Billingo\Contracts\ValidableInterface; |
| 6 |
use App\Billingo\Models\BillingoModel; |
| 7 |
use App\Billingo\Traits\WithFactory; |
| 8 |
use App\Billingo\Validation\DocumentExport\LedgerNumberInformationValidator; |
| 9 |
|
| 10 |
class LedgerNumberInformation extends BillingoModel |
| 11 |
{ |
| 12 |
use WithFactory; |
| 13 |
|
| 14 |
protected function getValidator(): ValidableInterface |
| 15 |
{ |
| 16 |
return new LedgerNumberInformationValidator(); |
| 17 |
} |
| 18 |
} |
| 19 |
|