mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-06-07 21:15:29 +02:00
16 lines
222 B
PHP
16 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Storage;
|
|
|
|
use App\Ad\Ad as AdItem;
|
|
|
|
interface Ad
|
|
{
|
|
public function fetchAll();
|
|
|
|
public function fetchById($id);
|
|
|
|
public function save(AdItem $ad);
|
|
|
|
public function delete(AdItem $ad);
|
|
} |