You are here

public function GroupSequence::count in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Constraints/GroupSequence.php \Symfony\Component\Validator\Constraints\GroupSequence::count()

Returns the number of groups in the sequence.

Implemented for backwards compatibility with Symfony < 2.5.

Return value

int The number of groups

Deprecated

since version 2.5, to be removed in 3.0.

File

vendor/symfony/validator/Constraints/GroupSequence.php, line 205

Class

GroupSequence
A sequence of validation groups.

Namespace

Symfony\Component\Validator\Constraints

Code

public function count() {
  @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.5 and will be removed in 3.0.', E_USER_DEPRECATED);
  return count($this->groups);
}