[Validator] Fix GroupSequenceProvider annotation

This commit is contained in:
Jáchym Toušek 2019-06-14 12:02:44 +02:00 committed by Fabien Potencier
parent 575e922964
commit bf6d2532de
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ class GroupSequence
/**
* The groups in the sequence.
*
* @var string[]|array[]|GroupSequence[]
* @var string[]|string[][]|GroupSequence[]
*/
public $groups;

View File

@ -22,7 +22,7 @@ interface GroupSequenceProviderInterface
* Returns which validation groups should be used for a certain state
* of the object.
*
* @return string[]|GroupSequence An array of validation groups
* @return string[]|string[][]|GroupSequence An array of validation groups
*/
public function getGroupSequence();
}