1
0
mirror of synced 2025-01-26 02:01:40 +03:00

24 lines
361 B
PHP
Raw Normal View History

2020-07-15 18:31:28 +03:00
<?php
namespace App\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
/**
* @Annotation
* @Target({"CLASS"})
*/
class RetailCrmAccess extends Constraint
{
/** @var array */
public $requiredApiMethods = [];
/**
* {@inheritdoc}
*/
public function getTargets()
{
return self::CLASS_CONSTRAINT;
}
}