mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-06-07 13:05:30 +02:00
14 lines
223 B
PHP
14 lines
223 B
PHP
<?php
|
|
|
|
namespace App\Storage;
|
|
|
|
interface Alert
|
|
{
|
|
public function fetchAll();
|
|
|
|
public function fetchById($id);
|
|
|
|
public function save(\App\Mail\Alert $alert);
|
|
|
|
public function delete(\App\Mail\Alert $alert);
|
|
} |