1 | <?php |
||
10 | class Items |
||
11 | { |
||
12 | private $requestHandler; |
||
13 | |||
14 | public function __construct(RequestHandler $requestHandler) |
||
18 | |||
19 | public function create(Item $item): Item |
||
28 | |||
29 | /** |
||
30 | * @return \Waredesk\Collections\Inventory\Items|Item[] |
||
31 | */ |
||
32 | public function fetch(): \Waredesk\Collections\Inventory\Items |
||
37 | } |
||
38 |