Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/update/vendor/phpunit/phpunit/tests/_files/
Upload File :
Current File : /home/dev2.destoffenstraat.com/update/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): bool
    {
        return true;
    }

    public function toString(): string
    {
        return $this->name;
    }
}