File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: Tareq
5
+ * Date: 6/10/2019
6
+ * Time: 11:22 PM
7
+ *
8
+ * @see https://help.shopify.com/en/api/reference/store-properties/currency Shopify API Reference for Currency
9
+ */
10
+
11
+ namespace PHPShopify ;
12
+
13
+
14
+ class Currency extends ShopifyResource
15
+ {
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ protected $ resourceKey = 'currency ' ;
20
+
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ public $ readOnly = true ;
25
+
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ public function pluralizeKey ()
30
+ {
31
+ return 'currencies ' ;
32
+ }
33
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+ /**
3
+ * Created by PhpStorm.
4
+ * User: Tareq
5
+ * Date: 6/10/2019
6
+ * Time: 11:26 PM
7
+ */
8
+
9
+ namespace PHPShopify ;
10
+
11
+
12
+ class CurrencyTest
13
+ {
14
+
15
+ }
You can’t perform that action at this time.
0 commit comments