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

View File

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

View File

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

View File

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