Skip to content

Commit

Permalink
Change handle to domain
Browse files Browse the repository at this point in the history
  • Loading branch information
pactode committed Apr 10, 2018
1 parent 16657fb commit 961d83a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/shopify.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
<php>
<env name="SHOPIFY_API_KEY" value="shopify.api.key.goes.here" />
<env name="SHOPIFY_PASSWORD" value="shopify.password.goes.here" />
<env name="SHOPIFY_HANDLE" value="shopify-handle.goes.here" />
<env name="SHOPIFY_DOMAIN" value="shopify-domain.goes.here" />
</php>
</phpunit>
2 changes: 1 addition & 1 deletion src/Profiles/ConfigProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
}
}

0 comments on commit 961d83a

Please sign in to comment.