File size: 298 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Mautic\ApiBundle\Form\Validator\Constraints;

use Symfony\Component\Validator\Constraint;

class OAuthCallback extends Constraint
{
    public $message = 'The callback URL is invalid.';

    public function validatedBy()
    {
        return OAuthCallbackValidator::class;
    }
}