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