⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
vendor
/
srmklive
/
paypal
/
src
/
Services
/
View File Name :
PayPal.php
<?php namespace Srmklive\PayPal\Services; use Exception; use Srmklive\PayPal\Traits\PayPalRequest as PayPalAPIRequest; use Srmklive\PayPal\Traits\PayPalVerifyIPN; class PayPal { use PayPalAPIRequest; use PayPalVerifyIPN; /** * PayPal constructor. * * @param array $config * * @throws Exception */ public function __construct(array $config = []) { // Setting PayPal API Credentials $this->setConfig($config); $this->httpBodyParam = 'form_params'; $this->options = []; $this->setRequestHeader('Accept', 'application/json'); } /** * Set ExpressCheckout API endpoints & options. * * @param array $credentials */ protected function setOptions(array $credentials): void { // Setting API Endpoints $this->config['api_url'] = 'https://api-m.paypal.com'; $this->config['gateway_url'] = 'https://www.paypal.com'; $this->config['ipn_url'] = 'https://ipnpb.paypal.com/cgi-bin/webscr'; if ($this->mode === 'sandbox') { $this->config['api_url'] = 'https://api-m.sandbox.paypal.com'; $this->config['gateway_url'] = 'https://www.sandbox.paypal.com'; $this->config['ipn_url'] = 'https://ipnpb.sandbox.paypal.com/cgi-bin/webscr'; } // Adding params outside sandbox / live array $this->config['payment_action'] = $credentials['payment_action']; $this->config['notify_url'] = $credentials['notify_url']; $this->config['locale'] = $credentials['locale']; } }