2019-12-15 15:45:22 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
|
|
|
interface RecipesRepositoryInterface
|
|
|
|
{
|
|
|
|
public function create(Collection $data);
|
2019-12-15 21:09:14 +01:00
|
|
|
public function paginate(array $filters);
|
2019-12-15 15:45:22 +01:00
|
|
|
}
|