12 lines
327 B
PHP
12 lines
327 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repositories\Interface;
|
||
|
|
||
|
interface AdvertisementInterface
|
||
|
{
|
||
|
public function getAll();
|
||
|
public function getAdvertisementById($id);
|
||
|
public function delete($advertisementId);
|
||
|
public function create(array $advertisementDetail);
|
||
|
public function update($advertisementId, array $newDetails);
|
||
|
}
|