1
0
mirror of synced 2025-01-25 01:31:41 +03:00
DeliveryModuleBundle/Validator/Constraints/IntegrationModuleAccess.php
2020-08-18 16:27:32 +03:00

24 lines
388 B
PHP

<?php
namespace RetailCrm\DeliveryModuleBundle\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
* @Target({"CLASS"})
*/
class IntegrationModuleAccess extends Constraint
{
/** @var string */
public $path = 'login';
/**
* {@inheritdoc}
*/
public function getTargets()
{
return self::CLASS_CONSTRAINT;
}
}