Skip to content

Commit

Permalink
Fixed minor, but important, namespace and parenthesis issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
telkins committed Feb 8, 2018
1 parent e0edbdf commit 40afa72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Http/Controllers/WebhookController.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected function buildWebhook(Request $request)
{
$topic = $request->shopifyTopic();

if (! $topic)) {
if (! $topic) {
throw WebhookFailed::missingTopic($request);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Http/Middleware/VerifySignature.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Signifly\Shopify\Laravel\Middleware;
namespace Signifly\Shopify\Laravel\Http\Middleware;

use Closure;
use Signifly\Shopify\Laravel\Exceptions\WebhookFailed;
Expand Down

0 comments on commit 40afa72

Please sign in to comment.