37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
|
name: UlidValidator
|
||
|
class_comment: '# * Validates whether the value is a valid ULID (Universally Unique
|
||
|
Lexicographically Sortable Identifier).
|
||
|
|
||
|
# * Cf https://github.com/ulid/spec for ULID specifications.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @author Laurent Clouet <laurent35240@gmail.com>'
|
||
|
dependencies:
|
||
|
- name: Constraint
|
||
|
type: class
|
||
|
source: Symfony\Component\Validator\Constraint
|
||
|
- name: ConstraintValidator
|
||
|
type: class
|
||
|
source: Symfony\Component\Validator\ConstraintValidator
|
||
|
- name: UnexpectedTypeException
|
||
|
type: class
|
||
|
source: Symfony\Component\Validator\Exception\UnexpectedTypeException
|
||
|
- name: UnexpectedValueException
|
||
|
type: class
|
||
|
source: Symfony\Component\Validator\Exception\UnexpectedValueException
|
||
|
properties: []
|
||
|
methods:
|
||
|
- name: validate
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: value
|
||
|
- name: constraint
|
||
|
comment: null
|
||
|
traits:
|
||
|
- Symfony\Component\Validator\Constraint
|
||
|
- Symfony\Component\Validator\ConstraintValidator
|
||
|
- Symfony\Component\Validator\Exception\UnexpectedTypeException
|
||
|
- Symfony\Component\Validator\Exception\UnexpectedValueException
|
||
|
interfaces: []
|