for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sludio\HelperBundle\Captcha\Validator\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
* @Target("PROPERTY")
*/
class IsTrue extends Constraint
{
* The reCAPTCHA validation message
public $message = 'sludio_helper.captcha.recaptcha.validator.message';
* {@inheritdoc}
public function getTargets()
return Constraint::PROPERTY_CONSTRAINT;
}