We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9af38a commit cfa991eCopy full SHA for cfa991e
src/Bigcommerce/Api/Resources/Sku.php
@@ -19,17 +19,6 @@ class Sku extends Resource
19
'product_id',
20
);
21
22
- public function options()
23
- {
24
- $options = Client::getCollection($this->fields->options->resource, 'SkuOption');
25
-
26
- foreach ($options as $option) {
27
- $option->product_id = $this->product_id;
28
- }
29
30
- return $options;
31
32
33
public function create()
34
{
35
return Client::createResource('/products/' . $this->product_id . '/skus', $this->getCreateFields());
0 commit comments