ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

11 lines
156 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-05 10:25:36 +01:00
public function paginate($chunkSize);
2019-12-04 12:49:41 +01:00
}