ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

11 lines
160 B
PHP

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