Fixed namespace

This commit is contained in:
Rodrigo Gonzalez 2023-03-23 18:42:33 -03:00
parent ed4a0b5217
commit d698214e46
3 changed files with 4 additions and 4 deletions

@ -1,10 +1,9 @@
<?php
namespace App\Helpers;
namespace Appvise\AppStoreNotifications;
use Illuminate\Http\Client\PendingRequest;
use Illuminate\Http\Client\Response;
use GuzzleHttp\Client;
use Illuminate\Http\Request;
use Illuminate\Http\UploadedFile as HttpUploadedFile;
use Illuminate\Support\Facades\Http;

@ -1,6 +1,6 @@
<?php
namespace App\Helpers;
namespace Appvise\AppStoreNotifications;
use Illuminate\Support\Facades\Facade;

@ -2,12 +2,13 @@
namespace Appvise\AppStoreNotifications;
use App\Helpers\ProxyHelperFacade;
use Appvise\AppStoreNotifications\ProxyHelperFacade;
use Illuminate\Http\Request;
use Appvise\AppStoreNotifications\Model\NotificationType;
use Appvise\AppStoreNotifications\Model\AppleNotification;
use Appvise\AppStoreNotifications\Exceptions\WebhookFailed;
use Appvise\AppStoreNotifications\Model\NotificationPayload;
use Appvise\AppStoreNotifications\ProxyHelperFacade as AppStoreNotificationsProxyHelperFacade;
class WebhooksController
{