ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

11 lines
160 B
PHP
Raw Normal View History

2019-12-04 12:49:41 +01:00
<?php
namespace App\Repositories;
interface ProductsRepositoryInterface
{
public function create($data);
2019-12-15 21:09:14 +01:00
public function paginate(array $filters);
2019-12-04 12:49:41 +01:00
}