ClearBowl/api/app/Repositories/ProductsRepositoryInterface.php

10 lines
114 B
PHP

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