Browse Source

Fixed namespace

proxy_request
Rodrigo Gonzalez 2 years ago
parent
commit
d698214e46
  1. 3
      src/ProxyHelper.php
  2. 2
      src/ProxyHelperFacade.php
  3. 3
      src/WebhooksController.php

3
src/ProxyHelper.php

@ -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;

2
src/ProxyHelperFacade.php

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

3
src/WebhooksController.php

@ -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
{ {

Loading…
Cancel
Save