Reviewed-on: #1 Co-authored-by: kevin <kevin@yuno.malio.fr> Co-committed-by: kevin <kevin@yuno.malio.fr>
13 lines
238 B
PHP
13 lines
238 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service;
|
|
|
|
interface PublicHolidayServiceInterface
|
|
{
|
|
public function getHolidaysDay(string $zone): array;
|
|
|
|
public function getHolidaysDayByYears(string $zone, string $years): array;
|
|
}
|