| 1 | <?php |
||
| 9 | class Categories extends Controller |
||
| 10 | { |
||
| 11 | private const ENDPOINT = '/v1-alpha/categories'; |
||
| 12 | |||
| 13 | 1 | public function create(Category $category): Category |
|
| 23 | |||
| 24 | public function delete(Category $category): bool |
||
| 29 | |||
| 30 | 4 | public function fetch(string $orderBy = null, string $order = self::ORDER_BY_ASC, int $limit = null): Collections\Categories |
|
| 42 | |||
| 43 | public function fetchOne(string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Category |
||
| 54 | |||
| 55 | public function findOneBy(array $criteria, string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Category |
||
| 67 | } |
||
| 68 |