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