diff --git a/src/ShopifyApp/Jobs/ScripttagInstaller.php b/src/ShopifyApp/Jobs/ScripttagInstaller.php index 0b72f1e0..c7c9b96b 100644 --- a/src/ShopifyApp/Jobs/ScripttagInstaller.php +++ b/src/ShopifyApp/Jobs/ScripttagInstaller.php @@ -7,7 +7,6 @@ use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; -use OhMyBrew\ShopifyApp\Models\Shop; class ScripttagInstaller implements ShouldQueue { @@ -35,7 +34,7 @@ class ScripttagInstaller implements ShouldQueue * * @return void */ - public function __construct(Shop $shop, array $scripttags) + public function __construct($shop, array $scripttags) { $this->shop = $shop; $this->scripttags = $scripttags; diff --git a/src/ShopifyApp/Jobs/WebhookInstaller.php b/src/ShopifyApp/Jobs/WebhookInstaller.php index 6bcf3961..dd1fabfb 100644 --- a/src/ShopifyApp/Jobs/WebhookInstaller.php +++ b/src/ShopifyApp/Jobs/WebhookInstaller.php @@ -7,7 +7,6 @@ use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; -use OhMyBrew\ShopifyApp\Models\Shop; class WebhookInstaller implements ShouldQueue { @@ -35,7 +34,7 @@ class WebhookInstaller implements ShouldQueue * * @return void */ - public function __construct(Shop $shop, array $webhooks) + public function __construct($shop, array $webhooks) { $this->shop = $shop; $this->webhooks = $webhooks;