mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-07-26 13:17:34 +02:00
Upgrade LBCAlerte to version 3.3
Add upgrade script
This commit is contained in:
16
sources/app/models/Storage/Ad.php
Normal file
16
sources/app/models/Storage/Ad.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?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);
|
||||
}
|
Reference in New Issue
Block a user