Skip to content

Commit 6f67113

Browse files
committed
linting
1 parent f8d7e7c commit 6f67113

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/Actions/InstallShop.php

+9-8
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
use Osiset\ShopifyApp\Contracts\Commands\Shop as IShopCommand;
77
use Osiset\ShopifyApp\Contracts\Queries\Shop as IShopQuery;
88
use Osiset\ShopifyApp\Objects\Enums\AuthMode;
9+
use Osiset\ShopifyApp\Objects\Enums\ThemeSupportLevel as ThemeSupportLevelEnum;
910
use Osiset\ShopifyApp\Objects\Values\AccessToken;
1011
use Osiset\ShopifyApp\Objects\Values\NullAccessToken;
1112
use Osiset\ShopifyApp\Objects\Values\ShopDomain;
1213
use Osiset\ShopifyApp\Objects\Values\ThemeSupportLevel;
13-
use Osiset\ShopifyApp\Objects\Enums\ThemeSupportLevel as ThemeSupportLevelEnum;
1414
use Osiset\ShopifyApp\Util;
1515

1616
/**
@@ -42,16 +42,17 @@ class InstallShop
4242
/**
4343
* Setup.
4444
*
45-
* @param IShopQuery $shopQuery The querier for the shop.
46-
* @param VerifyThemeSupport $verifyThemeSupport The action for verify theme support
45+
* @param IShopQuery $shopQuery The querier for the shop.
46+
* @param VerifyThemeSupport $verifyThemeSupport The action for verify theme support
4747
*
4848
* @return void
4949
*/
5050
public function __construct(
51-
IShopQuery $shopQuery,
52-
IShopCommand $shopCommand,
51+
IShopQuery $shopQuery,
52+
IShopCommand $shopCommand,
5353
VerifyThemeSupport $verifyThemeSupport
54-
) {
54+
)
55+
{
5556
$this->shopQuery = $shopQuery;
5657
$this->shopCommand = $shopCommand;
5758
$this->verifyThemeSupport = $verifyThemeSupport;
@@ -60,8 +61,8 @@ public function __construct(
6061
/**
6162
* Execution.
6263
*
63-
* @param ShopDomain $shopDomain The shop ID.
64-
* @param string|null $code The code from Shopify.
64+
* @param ShopDomain $shopDomain The shop ID.
65+
* @param string|null $code The code from Shopify.
6566
*
6667
* @return array
6768
*/

0 commit comments

Comments
 (0)