master_template/app/Repositories/AdCategoriesInterface.php

9 lines
189 B
PHP
Raw Normal View History

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