9 lines
124 B
PHP
9 lines
124 B
PHP
<?php
|
|
|
|
namespace App\Models\Validation\Validators;
|
|
|
|
interface ValidationInterface {
|
|
public function isValid(): bool;
|
|
}
|
|
|