TimeConstraintInterface.php 130 B

12345678
  1. <?php
  2. namespace App\Service\Constraint;
  3. interface TimeConstraintInterface
  4. {
  5. public function invoke(int $accessId): array;
  6. }