vendor/sulu/community-bundle/Validator/Constraints/Exist.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Sulu\Bundle\CommunityBundle\Validator\Constraints;
  11. use Symfony\Component\Validator\Constraint;
  12. /**
  13.  * Constraint for the ExistValidator.
  14.  */
  15. class Exist extends Constraint
  16. {
  17.     /**
  18.      * @var string
  19.      */
  20.     public $message 'The value "%string%" was not found.';
  21.     /**
  22.      * @var string[]
  23.      */
  24.     public $columns = [];
  25.     /**
  26.      * @var string
  27.      */
  28.     public $entity '';
  29.     public function validatedBy(): string
  30.     {
  31.         return 'exist_validator';
  32.     }
  33. }