/var/www/flurhymez/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality
NameSizeModeActions
Count.php35910644editdlrm
GreaterThan.php12200644editdlrm
IsEmpty.php17540644editdlrm
LessThan.php12140644editdlrm
SameSize.php5750644editdlrm
Edit: /var/www/flurhymez/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php (575B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework\Constraint; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ final class SameSize extends Count { public function __construct(iterable $expected) { parent::__construct((int) $this->getCountOf($expected)); } }