|
@@ -1,6 +1,6 @@ discard block |
|
|
block discarded – undo |
|
1
|
1
|
<?php |
|
2
|
2
|
|
|
3
|
|
-declare(strict_types=1); |
|
|
3
|
+declare(strict_types = 1); |
|
4
|
4
|
|
|
5
|
5
|
namespace LauLamanApps\IzettleApi\Client; |
|
6
|
6
|
|
|
@@ -19,21 +19,21 @@ discard block |
|
|
block discarded – undo |
|
19
|
19
|
|
|
20
|
20
|
const BASE_URL = 'https://inventory.izettle.com/organizations/%s'; |
|
21
|
21
|
|
|
22
|
|
- const GET_HISTORY = self::BASE_URL . '/history/locations/%s'; |
|
|
22
|
+ const GET_HISTORY = self::BASE_URL.'/history/locations/%s'; |
|
23
|
23
|
|
|
24
|
|
- const GET_PRODUCT_INVENTORY = self::BASE_URL . '/inventory/locations/%s/products/%s'; |
|
25
|
|
- const GET_LOCATION_INVENTORY = self::BASE_URL . '/inventory/locations/%s'; |
|
26
|
|
- const POST_INVENTORY = self::BASE_URL . '/inventory'; |
|
27
|
|
- const POST_INVENTORY_BULK = self::BASE_URL . '/inventory/bulk'; |
|
28
|
|
- const PUT_INVENTORY = self::BASE_URL . '/inventory'; |
|
29
|
|
- const DELETE_PRODUCT_INVENTORY = self::BASE_URL . '/inventory/products/%s'; |
|
|
24
|
+ const GET_PRODUCT_INVENTORY = self::BASE_URL.'/inventory/locations/%s/products/%s'; |
|
|
25
|
+ const GET_LOCATION_INVENTORY = self::BASE_URL.'/inventory/locations/%s'; |
|
|
26
|
+ const POST_INVENTORY = self::BASE_URL.'/inventory'; |
|
|
27
|
+ const POST_INVENTORY_BULK = self::BASE_URL.'/inventory/bulk'; |
|
|
28
|
+ const PUT_INVENTORY = self::BASE_URL.'/inventory'; |
|
|
29
|
+ const DELETE_PRODUCT_INVENTORY = self::BASE_URL.'/inventory/products/%s'; |
|
30
|
30
|
|
|
31
|
|
- const GET_LOCATIONS = self::BASE_URL . '/locations'; |
|
32
|
|
- const PUT_LOCATIONS = self::BASE_URL . '/locations/%s'; |
|
|
31
|
+ const GET_LOCATIONS = self::BASE_URL.'/locations'; |
|
|
32
|
+ const PUT_LOCATIONS = self::BASE_URL.'/locations/%s'; |
|
33
|
33
|
|
|
34
|
|
- const GET_SETTINGS = self::BASE_URL . '/settings'; |
|
35
|
|
- const POST_SETTINGS = self::BASE_URL . '/settings'; |
|
36
|
|
- const PUT_SETTINGS = self::BASE_URL . '/settings'; |
|
|
34
|
+ const GET_SETTINGS = self::BASE_URL.'/settings'; |
|
|
35
|
+ const POST_SETTINGS = self::BASE_URL.'/settings'; |
|
|
36
|
+ const PUT_SETTINGS = self::BASE_URL.'/settings'; |
|
37
|
37
|
|
|
38
|
38
|
/** |
|
39
|
39
|
* @var IzettleClientInterface |