vendor/symfony/validator/Constraints/Callback.php line 23

  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Validator\Constraints;
  11. use Symfony\Component\Validator\Constraint;
  12. /**
  13.  * @Annotation
  14.  * @Target({"CLASS", "PROPERTY", "METHOD", "ANNOTATION"})
  15.  *
  16.  * @author Bernhard Schussek <bschussek@gmail.com>
  17.  */
  18. #[\Attribute(\Attribute::TARGET_CLASS \Attribute::TARGET_PROPERTY \Attribute::TARGET_METHOD \Attribute::IS_REPEATABLE)]
  19. class Callback extends Constraint
  20. {
  21.     /**
  22.      * @var string|callable
  23.      */
  24.     public $callback;
  25.     public function __construct(array|string|callable $callback null, array $groups nullmixed $payload null, array $options = [])
  26.     {
  27.         // Invocation through annotations with an array parameter only
  28.         if (\is_array($callback) && === \count($callback) && isset($callback['value'])) {
  29.             $callback $callback['value'];
  30.         }
  31.         if (!\is_array($callback) || (!isset($callback['callback']) && !isset($callback['groups']) && !isset($callback['payload']))) {
  32.             $options['callback'] = $callback;
  33.         } else {
  34.             $options array_merge($callback$options);
  35.         }
  36.         parent::__construct($options$groups$payload);
  37.     }
  38.     public function getDefaultOption(): ?string
  39.     {
  40.         return 'callback';
  41.     }
  42.     public function getTargets(): string|array
  43.     {
  44.         return [self::CLASS_CONSTRAINTself::PROPERTY_CONSTRAINT];
  45.     }
  46. }