| 1 | <?php |
||
| 11 | class Items extends Controller |
||
| 12 | { |
||
| 13 | private const ENDPOINT = '/v1-alpha/inventory/items'; |
||
| 14 | |||
| 15 | 1 | public function create(Item $item): Item |
|
| 25 | |||
| 26 | 1 | public function delete(Item $item): bool |
|
| 31 | |||
| 32 | 1 | public function fetch(string $orderBy = null, string $order = self::ORDER_BY_ASC, int $limit = null): Collections\Inventory\Items |
|
| 44 | |||
| 45 | public function fetchOne(string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Item |
||
| 56 | |||
| 57 | public function findOneBy(array $criteria, string $orderBy = null, string $order = self::ORDER_BY_ASC): ? Item |
||
| 69 | } |
||
| 70 |