@@ -21,10 +21,10 @@ |
||
21 | 21 | { |
22 | 22 | const BASE_URL = 'https://finance.izettle.com/organizations/%s'; |
23 | 23 | |
24 | - const GET_ACCOUNT_TRANSACTIONS = self::BASE_URL . '/accounts/%s/transactions'; |
|
25 | - const GET_ACCOUNT_BALANCE = self::BASE_URL . '/accounts/%s/balance'; |
|
24 | + const GET_ACCOUNT_TRANSACTIONS = self::BASE_URL.'/accounts/%s/transactions'; |
|
25 | + const GET_ACCOUNT_BALANCE = self::BASE_URL.'/accounts/%s/balance'; |
|
26 | 26 | |
27 | - const GET_PAYOUT_INFO = self::BASE_URL . '/payout-info'; |
|
27 | + const GET_PAYOUT_INFO = self::BASE_URL.'/payout-info'; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @var IzettleClientInterface |
@@ -23,30 +23,30 @@ |
||
23 | 23 | { |
24 | 24 | const BASE_URL = 'https://products.izettle.com/organizations/%s'; |
25 | 25 | |
26 | - const POST_CATEGORY = self::BASE_URL . '/categories'; |
|
27 | - const GET_CATEGORY = self::BASE_URL . '/categories/%s'; |
|
28 | - const GET_CATEGORIES = self::BASE_URL . '/categories'; |
|
29 | - |
|
30 | - const POST_DISCOUNT = self::BASE_URL . '/discounts'; |
|
31 | - const GET_DISCOUNT = self::BASE_URL . '/discounts/%s'; |
|
32 | - const PUT_DISCOUNT = self::BASE_URL . '/discounts/%s'; |
|
33 | - const DELETE_DISCOUNT = self::BASE_URL . '/discounts/%s'; |
|
34 | - const GET_DISCOUNTS = self::BASE_URL . '/discounts'; |
|
35 | - |
|
36 | - const GET_EXPORT = self::BASE_URL . '/products/%s'; |
|
37 | - const GET_EXPORT_TEMPLATE = self::BASE_URL . '/products/%s/template'; |
|
38 | - |
|
39 | - const GET_LIBRARY = self::BASE_URL . '/library'; |
|
40 | - |
|
41 | - const POST_PRODUCT = self::BASE_URL . '/products'; |
|
42 | - const GET_PRODUCT = self::BASE_URL . '/products/%s'; |
|
43 | - const PUT_PRODUCT = self::BASE_URL . '/products/v2/%s'; |
|
44 | - const DELETE_PRODUCT = self::BASE_URL . '/products/%s'; |
|
45 | - const POST_PRODUCT_VARIANT = self::BASE_URL . '/products/%s/variants'; |
|
46 | - const PUT_PRODUCT_VARIANT = self::BASE_URL . '/products/%s/variants/%s'; |
|
47 | - const DELETE_PRODUCT_VARIANT = self::BASE_URL . '/products/%s/variants/%s'; |
|
48 | - const GET_PRODUCTS = self::BASE_URL . '/products'; |
|
49 | - const DELETE_PRODUCTS = self::BASE_URL . '/products'; |
|
26 | + const POST_CATEGORY = self::BASE_URL.'/categories'; |
|
27 | + const GET_CATEGORY = self::BASE_URL.'/categories/%s'; |
|
28 | + const GET_CATEGORIES = self::BASE_URL.'/categories'; |
|
29 | + |
|
30 | + const POST_DISCOUNT = self::BASE_URL.'/discounts'; |
|
31 | + const GET_DISCOUNT = self::BASE_URL.'/discounts/%s'; |
|
32 | + const PUT_DISCOUNT = self::BASE_URL.'/discounts/%s'; |
|
33 | + const DELETE_DISCOUNT = self::BASE_URL.'/discounts/%s'; |
|
34 | + const GET_DISCOUNTS = self::BASE_URL.'/discounts'; |
|
35 | + |
|
36 | + const GET_EXPORT = self::BASE_URL.'/products/%s'; |
|
37 | + const GET_EXPORT_TEMPLATE = self::BASE_URL.'/products/%s/template'; |
|
38 | + |
|
39 | + const GET_LIBRARY = self::BASE_URL.'/library'; |
|
40 | + |
|
41 | + const POST_PRODUCT = self::BASE_URL.'/products'; |
|
42 | + const GET_PRODUCT = self::BASE_URL.'/products/%s'; |
|
43 | + const PUT_PRODUCT = self::BASE_URL.'/products/v2/%s'; |
|
44 | + const DELETE_PRODUCT = self::BASE_URL.'/products/%s'; |
|
45 | + const POST_PRODUCT_VARIANT = self::BASE_URL.'/products/%s/variants'; |
|
46 | + const PUT_PRODUCT_VARIANT = self::BASE_URL.'/products/%s/variants/%s'; |
|
47 | + const DELETE_PRODUCT_VARIANT = self::BASE_URL.'/products/%s/variants/%s'; |
|
48 | + const GET_PRODUCTS = self::BASE_URL.'/products'; |
|
49 | + const DELETE_PRODUCTS = self::BASE_URL.'/products'; |
|
50 | 50 | |
51 | 51 | private $client; |
52 | 52 | private $organizationUuid; |
@@ -13,7 +13,7 @@ |
||
13 | 13 | final class ImageClient |
14 | 14 | { |
15 | 15 | const BASE_URL = 'https://image.izettle.com/organizations/%s'; |
16 | - const POST_IMAGE = self::BASE_URL . '/products'; |
|
16 | + const POST_IMAGE = self::BASE_URL.'/products'; |
|
17 | 17 | |
18 | 18 | private $client; |
19 | 19 | private $organizationUuid = 'self'; |
@@ -17,8 +17,8 @@ |
||
17 | 17 | { |
18 | 18 | const BASE_URL = 'https://purchase.izettle.com'; |
19 | 19 | |
20 | - const GET_PURCHASE = self::BASE_URL . '/purchase/v2/%s'; |
|
21 | - const GET_PURCHASES = self::BASE_URL . '/purchases/v2'; |
|
20 | + const GET_PURCHASE = self::BASE_URL.'/purchase/v2/%s'; |
|
21 | + const GET_PURCHASES = self::BASE_URL.'/purchases/v2'; |
|
22 | 22 | |
23 | 23 | private $client; |
24 | 24 | private $purchaseHistoryBuilder; |
@@ -53,7 +53,7 @@ |
||
53 | 53 | return $this->parseVippsPayment($payment, $currency); |
54 | 54 | } |
55 | 55 | |
56 | - throw new PaymentTypeNotConfiguredException('Payment type \'' . $payment['type'] . '\' not configured'); |
|
56 | + throw new PaymentTypeNotConfiguredException('Payment type \''.$payment['type'].'\' not configured'); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | private function parseCardPayment($payment, Currency $currency): CardPayment |
@@ -18,7 +18,7 @@ |
||
18 | 18 | |
19 | 19 | public function buildFromJson(string $jsonData): PurchaseHistory |
20 | 20 | { |
21 | - $data = json_decode($jsonData, true); |
|
21 | + $data = json_decode($jsonData, true); |
|
22 | 22 | |
23 | 23 | return new PurchaseHistory( |
24 | 24 | $data['firstPurchaseHash'], |