ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

12 lines
215 B
PHP

<?php
namespace App\Repositories;
interface ProductsRepositoryInterface
{
public function create($data);
public function paginate(array $filters);
public function fillProductsInfo(array $products);
}