9 lines
199 B
PHP
9 lines
199 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Interface;
|
|
|
|
interface AdCategoriesInterface
|
|
{
|
|
public function create(array $adCategoriesDetail);
|
|
public function update($adCategoryId, array $newDetails);
|
|
} |