Skip to content

Commit 405a03b

Browse files
committed
[Validator] Updated deprecation notes in GroupSequence
1 parent 499b2bb commit 405a03b

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/Symfony/Component/Validator/Constraints/GroupSequence.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ public function __construct(array $groups)
9494
/**
9595
* Returns an iterator for this group.
9696
*
97-
* @return Traversable The iterator
97+
* @return \Traversable The iterator
9898
*
9999
* @see \IteratorAggregate::getIterator()
100100
*
101-
* @deprecated Implemented for backwards compatibility. To be removed in
102-
* Symfony 3.0.
101+
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
102+
* To be removed in 3.0.
103103
*/
104104
public function getIterator()
105105
{
@@ -113,8 +113,8 @@ public function getIterator()
113113
*
114114
* @return Boolean Whether the offset exists
115115
*
116-
* @deprecated Implemented for backwards compatibility. To be removed in
117-
* Symfony 3.0.
116+
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
117+
* To be removed in 3.0.
118118
*/
119119
public function offsetExists($offset)
120120
{
@@ -130,8 +130,8 @@ public function offsetExists($offset)
130130
*
131131
* @throws OutOfBoundsException If the object does not exist
132132
*
133-
* @deprecated Implemented for backwards compatibility. To be removed in
134-
* Symfony 3.0.
133+
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
134+
* To be removed in 3.0.
135135
*/
136136
public function offsetGet($offset)
137137
{
@@ -151,8 +151,8 @@ public function offsetGet($offset)
151151
* @param integer $offset The offset
152152
* @param string $value The group name
153153
*
154-
* @deprecated Implemented for backwards compatibility. To be removed in
155-
* Symfony 3.0.
154+
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
155+
* To be removed in 3.0.
156156
*/
157157
public function offsetSet($offset, $value)
158158
{
@@ -170,8 +170,8 @@ public function offsetSet($offset, $value)
170170
*
171171
* @param integer $offset The offset
172172
*
173-
* @deprecated Implemented for backwards compatibility. To be removed in
174-
* Symfony 3.0.
173+
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
174+
* To be removed in 3.0.
175175
*/
176176
public function offsetUnset($offset)
177177
{
@@ -183,8 +183,8 @@ public function offsetUnset($offset)
183183
*
184184
* @return integer The number of groups
185185
*
186-
* @deprecated Implemented for backwards compatibility. To be removed in
187-
* Symfony 3.0.
186+
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
187+
* To be removed in 3.0.
188188
*/
189189
public function count()
190190
{

0 commit comments

Comments
 (0)