-
Notifications
You must be signed in to change notification settings - Fork 212
How to create multiple shopify objects to access multiple stores #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I have exactly the same issue. It appears PHPShopify\ShopifySDK is a singleton. I need to clone/copy from one store to another. But the 2nd shopify store object overrides the 1st one. I have limited knowledge on using php object, but it appears to be the same as using "static" in C/C++. Can someone please look into this issue? Thank you! |
After looking at the code, I see “static” is used throughout the class. That is the bug, |
I made the changes to support multiple instances of ShopifySDK How can I submit the changes for review? Can someone check in for me? Thanks! |
Using static properties for configs means that you can never initialize more than one SDK object at a time. closes phpclassic#72 and phpclassic#61
The static for config is never fixed. It is still there. |
you need change the 3 files in the issue #61 (comment) |
Hi everybody,
I want to update data to my two Shopify stores. But if I changed a config of Shopify SDK, it's not working. Object 1 of store 1 is same to Object 2 of store 2.
Here 's my code:
Please help me. Thanks!
The text was updated successfully, but these errors were encountered: