14 lines
172 B
PHP
14 lines
172 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repository\Interfaces;
|
|
|
|
interface CategoryRepository
|
|
{
|
|
|
|
public function all();
|
|
public function get(string $slug);
|
|
|
|
}
|