We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53b34a7 commit 59bce90Copy full SHA for 59bce90
.gitignore
@@ -1,2 +1,3 @@
1
vendor
2
-/nbproject/private/
+/nbproject/private/
3
+.idea/
lib/Report.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace PHPShopify;
4
5
+class Report extends ShopifyResource
6
+{
7
+ protected $resourceKey = 'report';
8
+}
lib/ShopifySDK.php
@@ -114,6 +114,7 @@ class ShopifySDK
114
'ProductVariant',
115
'RecurringApplicationCharge',
116
'Redirect',
117
+ 'Report',
118
'ScriptTag',
119
'ShippingZone',
120
'Shop',
tests/ReportTest.php
+class ReportTest extends TestSimpleResource
0 commit comments