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\DateTime;
use Attribute;
#[Attribute(Attribute::TARGET_PROPERTY)]
class IsPast extends LessThan
{
public function __construct(?string $message = 'The date/time should be in the past')
parent::__construct('now', $message);
}