SuiteCRM-Core/Api/V8/Param/Options/Id.php
Dillon-Brown 8e4cc94994 Squashed 'public/legacy/' content from commit 817a12dc0
git-subtree-dir: public/legacy
git-subtree-split: 817a12dc0c30c189f56d5cb1f7dc37a9631bdbe3
2021-03-31 15:37:32 +01:00

21 lines
579 B
PHP

<?php
namespace Api\V8\Param\Options;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints as Assert;
class Id extends BaseOption
{
/**
* @inheritdoc
*/
public function add(OptionsResolver $resolver)
{
$resolver
->setRequired('id')
->setAllowedTypes('id', 'string')
->setAllowedValues('id', $this->validatorFactory->createClosure([
new Assert\Regex('/^(\d+|[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})$/i')
]));
}
}