Intializing the client
use Pactode\Shopify\Shopify;
$shopify = new Shopify(
env('SHOPIFY_ACCESS_TOKEN'),
env('SHOPIFY_DOMAIN'),
env('SHOPIFY_API_VERSION')
);Resolve from the service container
use Pactode\Shopify\Shopify;
$shopify = app(Shopify::class);$shopify = app('shopify');Resolve using the factory
$shopify = \Pactode\Shopify\Factory::fromConfig();Resolve using dependency injection
Last updated