Skip to content

Commit

Permalink
[Validator] Updated deprecation notes in GroupSequence
Browse files Browse the repository at this point in the history
  • Loading branch information
webmozart committed Mar 30, 2014
1 parent 499b2bb commit 405a03b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/Symfony/Component/Validator/Constraints/GroupSequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ public function __construct(array $groups)
/**
* Returns an iterator for this group.
*
* @return Traversable The iterator
* @return \Traversable The iterator
*
* @see \IteratorAggregate::getIterator()
*
* @deprecated Implemented for backwards compatibility. To be removed in
* Symfony 3.0.
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
* To be removed in 3.0.
*/
public function getIterator()
{
Expand All @@ -113,8 +113,8 @@ public function getIterator()
*
* @return Boolean Whether the offset exists
*
* @deprecated Implemented for backwards compatibility. To be removed in
* Symfony 3.0.
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
* To be removed in 3.0.
*/
public function offsetExists($offset)
{
Expand All @@ -130,8 +130,8 @@ public function offsetExists($offset)
*
* @throws OutOfBoundsException If the object does not exist
*
* @deprecated Implemented for backwards compatibility. To be removed in
* Symfony 3.0.
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
* To be removed in 3.0.
*/
public function offsetGet($offset)
{
Expand All @@ -151,8 +151,8 @@ public function offsetGet($offset)
* @param integer $offset The offset
* @param string $value The group name
*
* @deprecated Implemented for backwards compatibility. To be removed in
* Symfony 3.0.
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
* To be removed in 3.0.
*/
public function offsetSet($offset, $value)
{
Expand All @@ -170,8 +170,8 @@ public function offsetSet($offset, $value)
*
* @param integer $offset The offset
*
* @deprecated Implemented for backwards compatibility. To be removed in
* Symfony 3.0.
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
* To be removed in 3.0.
*/
public function offsetUnset($offset)
{
Expand All @@ -183,8 +183,8 @@ public function offsetUnset($offset)
*
* @return integer The number of groups
*
* @deprecated Implemented for backwards compatibility. To be removed in
* Symfony 3.0.
* @deprecated Implemented for backwards compatibility with Symfony < 2.5.
* To be removed in 3.0.
*/
public function count()
{
Expand Down

0 comments on commit 405a03b

Please sign in to comment.