mautic / app /bundles /FormBundle /Validator /Constraint /PhoneNumberConstraint.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
341 Bytes
<?php
namespace Mautic\FormBundle\Validator\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Phone number constraint.
*/
class PhoneNumberConstraint extends Constraint
{
public $message;
public function getMessage()
{
if (null !== $this->message) {
return $this->message;
}
}
}