!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/yoast/phpunit-polyfills/src/Polyfills/   drwxr-xr-x
Free 711.53 GB of 879.6 GB (80.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Yoast\PHPUnitPolyfills\Polyfills;

use PHPUnit\Framework\Constraint\IsEqual;
use PHPUnit_Framework_Constraint_IsEqual;

/**
 * Polyfill the Assert::equalToCanonicalizing(), Assert::equalToIgnoringCase() and
 * Assert::equalToWithDelta(), which replace the use of Assert::equalTo()
 * with these optional parameters.
 *
 * Introduced in PHPUnit 9.0.0.
 * Use of Assert::equalTo() with these respective optional parameters was
 * never deprecated but leads to unexpected behaviour as they are ignored in PHPUnit 9.0.0.
 *
 * @link https://github.com/sebastianbergmann/phpunit/commit/43c01a4e0c74a4bf019a8d879bced5146af2fbb6
 *
 * @since 1.0.0
 */
trait EqualToSpecializations {

    /**
     * Creates "is equal" constraint (canonicalizing).
     *
     * @param mixed $value Expected value for constraint.
     *
     * @return IsEqual|PHPUnit_Framework_Constraint_IsEqual An isEqual constraint instance.
     */
    final public static function equalToCanonicalizing( $value ) {
        return static::equalTo( $value, 0.0, 10, true, false );
    }

    /**
     * Creates "is equal" constraint (ignoring case).
     *
     * @param mixed $value Expected value for constraint.
     *
     * @return IsEqual|PHPUnit_Framework_Constraint_IsEqual An isEqual constraint instance.
     */
    final public static function equalToIgnoringCase( $value ) {
        return static::equalTo( $value, 0.0, 10, false, true );
    }

    /**
     * Creates "is equal" constraint (with delta).
     *
     * @param mixed $value Expected value for constraint.
     * @param float $delta The delta to allow between the expected and the actual value.
     *
     * @return IsEqual|PHPUnit_Framework_Constraint_IsEqual An isEqual constraint instance.
     */
    final public static function equalToWithDelta( $value, $delta ) {
        return static::equalTo( $value, $delta, 10, false, false );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.081 ]--