for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Version\Exception;
use DomainException;
class InvalidOperatorConstraintException extends DomainException implements ExceptionInterface
{
public static function forUnsupportedOperator(string $operator): self
return new self(sprintf('Unsupported constraint operator: %s', $operator));
}