CarRepositoryInterface.php 194 B

12345678
  1. <?php
  2. interface CarRepositoryInterface
  3. {
  4. public function getByMark(array $cars, string $mark): array;
  5. public function getByModel(array $cars, string $model, int $expluatationYears): array;
  6. }