<?php
use PHPUnit\Framework\Constraint\Constraint;
final class CountConstraint extends Constraint
{
/**
* @var int
*/
private $count;
public static function fromCount(int $count): self
{
$instance = new self();
$instance->count = $count;
return $instance;
}
public function matches($other)
{
return true;
}
public function toString()
{
return sprintf(
'is accepted by %s',
self::class
);
}
public function count()
{
return $this->count;
}
}