13 lines
220 B
PHP
13 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories\Notifications;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface NotificationContractInterface extends ContractInterface
|
|
{
|
|
public function getNotify();
|
|
|
|
} |