master_template/app/Repositories/Interface/AdCategoriesInterface.php

9 lines
199 B
PHP
Raw Normal View History

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