public function GroupSequence::offsetGet in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/validator/Constraints/GroupSequence.php \Symfony\Component\Validator\Constraints\GroupSequence::offsetGet()
Returns the group at the given offset.
Implemented for backwards compatibility with Symfony < 2.5.
Parameters
int $offset The offset:
Return value
string The group a the given offset
Throws
OutOfBoundsException If the object does not exist
Deprecated
since version 2.5, to be removed in 3.0.
File
- vendor/
symfony/ validator/ Constraints/ GroupSequence.php, line 143
Class
- GroupSequence
- A sequence of validation groups.
Namespace
Symfony\Component\Validator\ConstraintsCode
public function offsetGet($offset) {
@trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
if (!isset($this->groups[$offset])) {
throw new OutOfBoundsException(sprintf('The offset "%s" does not exist.', $offset));
}
return $this->groups[$offset];
}