PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/vendor/symfony/validator/Constraints/GroupSequence.php

https://gitlab.com/guillaumev/alkarama
PHP | 211 lines | 52 code | 21 blank | 138 comment | 2 complexity | a6c32d05a178712f98684503420339e9 MD5 | raw file
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Validator\Constraints;
  11. use Symfony\Component\Validator\Exception\OutOfBoundsException;
  12. /**
  13. * A sequence of validation groups.
  14. *
  15. * When validating a group sequence, each group will only be validated if all
  16. * of the previous groups in the sequence succeeded. For example:
  17. *
  18. * $validator->validate($address, null, new GroupSequence(array('Basic', 'Strict')));
  19. *
  20. * In the first step, all constraints that belong to the group "Basic" will be
  21. * validated. If none of the constraints fail, the validator will then validate
  22. * the constraints in group "Strict". This is useful, for example, if "Strict"
  23. * contains expensive checks that require a lot of CPU or slow, external
  24. * services. You usually don't want to run expensive checks if any of the cheap
  25. * checks fail.
  26. *
  27. * When adding metadata to a class, you can override the "Default" group of
  28. * that class with a group sequence:
  29. *
  30. * /**
  31. * * @GroupSequence({"Address", "Strict"})
  32. * *\/
  33. * class Address
  34. * {
  35. * // ...
  36. * }
  37. *
  38. * Whenever you validate that object in the "Default" group, the group sequence
  39. * will be validated:
  40. *
  41. * $validator->validate($address);
  42. *
  43. * If you want to execute the constraints of the "Default" group for a class
  44. * with an overridden default group, pass the class name as group name instead:
  45. *
  46. * $validator->validate($address, null, "Address")
  47. *
  48. * @Annotation
  49. * @Target({"CLASS", "ANNOTATION"})
  50. *
  51. * @author Bernhard Schussek <bschussek@gmail.com>
  52. *
  53. * Implementing \ArrayAccess, \IteratorAggregate and \Countable is @deprecated since 2.5 and will be removed in 3.0.
  54. */
  55. class GroupSequence implements \ArrayAccess, \IteratorAggregate, \Countable
  56. {
  57. /**
  58. * The groups in the sequence.
  59. *
  60. * @var string[]|GroupSequence[]
  61. */
  62. public $groups;
  63. /**
  64. * The group in which cascaded objects are validated when validating
  65. * this sequence.
  66. *
  67. * By default, cascaded objects are validated in each of the groups of
  68. * the sequence.
  69. *
  70. * If a class has a group sequence attached, that sequence replaces the
  71. * "Default" group. When validating that class in the "Default" group, the
  72. * group sequence is used instead, but still the "Default" group should be
  73. * cascaded to other objects.
  74. *
  75. * @var string|GroupSequence
  76. */
  77. public $cascadedGroup;
  78. /**
  79. * Creates a new group sequence.
  80. *
  81. * @param string[] $groups The groups in the sequence
  82. */
  83. public function __construct(array $groups)
  84. {
  85. // Support for Doctrine annotations
  86. $this->groups = isset($groups['value']) ? $groups['value'] : $groups;
  87. }
  88. /**
  89. * Returns an iterator for this group.
  90. *
  91. * Implemented for backwards compatibility with Symfony < 2.5.
  92. *
  93. * @return \Traversable The iterator
  94. *
  95. * @see \IteratorAggregate::getIterator()
  96. * @deprecated since version 2.5, to be removed in 3.0.
  97. */
  98. public function getIterator()
  99. {
  100. @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  101. return new \ArrayIterator($this->groups);
  102. }
  103. /**
  104. * Returns whether the given offset exists in the sequence.
  105. *
  106. * Implemented for backwards compatibility with Symfony < 2.5.
  107. *
  108. * @param int $offset The offset
  109. *
  110. * @return bool Whether the offset exists
  111. *
  112. * @deprecated since version 2.5, to be removed in 3.0.
  113. */
  114. public function offsetExists($offset)
  115. {
  116. @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  117. return isset($this->groups[$offset]);
  118. }
  119. /**
  120. * Returns the group at the given offset.
  121. *
  122. * Implemented for backwards compatibility with Symfony < 2.5.
  123. *
  124. * @param int $offset The offset
  125. *
  126. * @return string The group a the given offset
  127. *
  128. * @throws OutOfBoundsException If the object does not exist
  129. *
  130. * @deprecated since version 2.5, to be removed in 3.0.
  131. */
  132. public function offsetGet($offset)
  133. {
  134. @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  135. if (!isset($this->groups[$offset])) {
  136. throw new OutOfBoundsException(sprintf(
  137. 'The offset "%s" does not exist.',
  138. $offset
  139. ));
  140. }
  141. return $this->groups[$offset];
  142. }
  143. /**
  144. * Sets the group at the given offset.
  145. *
  146. * Implemented for backwards compatibility with Symfony < 2.5.
  147. *
  148. * @param int $offset The offset
  149. * @param string $value The group name
  150. *
  151. * @deprecated since version 2.5, to be removed in 3.0.
  152. */
  153. public function offsetSet($offset, $value)
  154. {
  155. @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  156. if (null !== $offset) {
  157. $this->groups[$offset] = $value;
  158. return;
  159. }
  160. $this->groups[] = $value;
  161. }
  162. /**
  163. * Removes the group at the given offset.
  164. *
  165. * Implemented for backwards compatibility with Symfony < 2.5.
  166. *
  167. * @param int $offset The offset
  168. *
  169. * @deprecated since version 2.5, to be removed in 3.0.
  170. */
  171. public function offsetUnset($offset)
  172. {
  173. @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  174. unset($this->groups[$offset]);
  175. }
  176. /**
  177. * Returns the number of groups in the sequence.
  178. *
  179. * Implemented for backwards compatibility with Symfony < 2.5.
  180. *
  181. * @return int The number of groups
  182. *
  183. * @deprecated since version 2.5, to be removed in 3.0.
  184. */
  185. public function count()
  186. {
  187. @trigger_error('The '.__METHOD__.' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  188. return count($this->groups);
  189. }
  190. }