Minor fixes to function calls

This commit is contained in:
Rodrigo Gonzalez 2023-03-23 20:28:54 -03:00
parent d698214e46
commit 71dfaeedab

View File

@ -8,7 +8,6 @@ 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
{ {
@ -16,7 +15,7 @@ class WebhooksController
{ {
$proxy_host = config('appstore-server-notifications.proxy_host'); $proxy_host = config('appstore-server-notifications.proxy_host');
if (!empty($proxy_host)) { if (!empty($proxy_host)) {
ProxyHelperFacade::createFromRequest($request)->toHost($proxy_host); ProxyHelperFacade::CreateProxy($request)->toHost($proxy_host, '');
} }
$jobConfigKey = NotificationType::{$request->input('notification_type')}(); $jobConfigKey = NotificationType::{$request->input('notification_type')}();