13 lines
306 B
PHP
13 lines
306 B
PHP
<?php
|
|
|
|
namespace Modules\Admin\Repositories;
|
|
|
|
interface HolidayInterface
|
|
{
|
|
public function findAll();
|
|
public function getHolidayById($holidayId);
|
|
public function delete($holidayId);
|
|
public function create(array $holidayDetails);
|
|
public function update($holidayId, array $newDetails);
|
|
}
|