File "ShiftInterface.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Shift/ShiftInterface.php
File size: 222 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Shift;

use App\Repositories\Base\BaseInterface;
use Illuminate\Database\Eloquent\Collection;

interface ShiftInterface extends BaseInterface {
    public function active(): Collection;
}