ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

11 lines
156 B
PHP

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