| 1 | <?php |
||
| 9 | class Products extends Controller |
||
| 10 | { |
||
| 11 | private const ENDPOINT = '/v1-alpha/products'; |
||
| 12 | |||
| 13 | 3 | public function create(Product $product): Product |
|
| 23 | |||
| 24 | public function update(Product $product): Product |
||
| 35 | |||
| 36 | 1 | public function fetch(string $orderBy = null, string $order = self::ORDER_BY_ASC, int $limit = null): Collections\Products |
|
| 48 | |||
| 49 | public function fetchOne(string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Product |
||
| 60 | |||
| 61 | 1 | public function findOneBy(array $criteria, string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Product |
|
| 73 | } |
||
| 74 |