for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BrenoRoosevelt\Validation\Rules\Comparison;
use Attribute;
use BrenoRoosevelt\Validation\Operator;
#[Attribute(Attribute::TARGET_PROPERTY)]
class NotEqual extends Compare
{
public function __construct(
mixed $value,
?string $message = null,
?int $stopOnFailure = null,
?int $priority = null
) {
parent::__construct(
Operator::NOT_EQUAL,
$value,
$message,
$stopOnFailure,
$priority
);
}