PresenceOf - Validates that a value is not null or empty string
$validator->add('name', new \Phalcon\Validation\Validator\PresenceOf([
'message' => 'The name is required'
]));
Email - Checks if a value has a correct e-mail format
$validator->add('email', new \Phalcon\Validation\Va...