chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
257 Bytes
<?php
declare(strict_types=1);
namespace Mautic\CoreBundle\Validator;
use Symfony\Component\Validator\Constraint;
final class EntityEvent extends Constraint
{
public function getTargets(): string
{
return self::CLASS_CONSTRAINT;
}
}