| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Validation\Util; |
| 4 |
|
| 5 |
use App\Billingo\Validation\Validator; |
| 6 |
|
| 7 |
class IdValidator extends Validator |
| 8 |
{ |
| 9 |
|
| 10 |
protected function rules(): array |
| 11 |
{ |
| 12 |
return [ |
| 13 |
'id' => ['optional', 'integer'], |
| 14 |
'legacy_id' => ['optional', 'integer'], |
| 15 |
]; |
| 16 |
} |
| 17 |
} |