master_template/app/Repositories/Interface/AdCategoriesInterface.php

9 lines
199 B
PHP
Raw Normal View History

2024-06-18 10:41:58 +00:00
<?php
namespace App\Repositories\Interface;
interface AdCategoriesInterface
{
public function create(array $adCategoriesDetail);
public function update($adCategoryId, array $newDetails);
}