From 961d83a9e0893736809fbadbad932ce44e20b88a Mon Sep 17 00:00:00 2001 From: Morten Poul Jensen Date: Tue, 10 Apr 2018 11:38:34 +0200 Subject: [PATCH] Change handle to domain --- config/shopify.php | 4 ++-- phpunit.xml.dist | 2 +- src/Profiles/ConfigProfile.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/shopify.php b/config/shopify.php index 34c1ceb..924fac2 100644 --- a/config/shopify.php +++ b/config/shopify.php @@ -17,9 +17,9 @@ 'password' => env('SHOPIFY_PASSWORD'), /* - * The shopify handle for your shop. + * The shopify domain for your shop. */ - 'handle' => env('SHOPIFY_HANDLE'), + 'domain' => env('SHOPIFY_DOMAIN'), /* * The webhook secret provider to use. diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 15a97c2..3e2ca1a 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -22,6 +22,6 @@ - + diff --git a/src/Profiles/ConfigProfile.php b/src/Profiles/ConfigProfile.php index 26b7c02..99eea15 100644 --- a/src/Profiles/ConfigProfile.php +++ b/src/Profiles/ConfigProfile.php @@ -10,6 +10,6 @@ public function __construct() { $config = config('shopify'); - parent::__construct($config['api_key'], $config['password'], $config['handle']); + parent::__construct($config['api_key'], $config['password'], $config['domain']); } }