for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Albert221\Validation\Rule;
use Albert221\Validation\Verdict;
use Albert221\Validation\VerdictInterface;
/**
* Required validates whether given value is considered as existing or not.
*/
class Required extends Rule
{
protected $message = 'This field is required.';
}