ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

12 lines
215 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);
public function fillProductsInfo(array $products);
2019-12-04 12:49:41 +01:00
}