mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
19 lines
305 B
PHP
19 lines
305 B
PHP
<?php
|
|
|
|
namespace Modules\Attendance\Repositories;
|
|
|
|
interface HolidayRepositoryInterface
|
|
{
|
|
public function all();
|
|
|
|
public function create(array $data);
|
|
|
|
public function find($id);
|
|
|
|
public function copyYear($year);
|
|
|
|
public function year($year);
|
|
|
|
public function getHoliday($date);
|
|
}
|