Viewing File: /usr/local/cpanel/3rdparty/wpinstaller/vendor/phpunit/phpunit/tests/_files/NamedConstraint.php

<?php
use PHPUnit\Framework\Constraint\Constraint;

final class NamedConstraint extends Constraint
{
    /**
     * @var int
     */
    private $name;

    public static function fromName(string $name): self
    {
        $instance = new self();

        $instance->name = $name;

        return $instance;
    }

    public function matches($other)
    {
        return true;
    }

    public function toString()
    {
        return $this->name;
    }
}
Back to Directory File Manager