for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Digikraaft\ModelSuspension\Exceptions;
use Exception;
class InvalidDate extends Exception
{
public static function from(): self
return new self("The from date date cannot be greater than the to that.
A valid from date must not be later than the to date");
}