Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: 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; } }