Skip to content

Commit

Permalink
minor #32044 [Validator] Fix GroupSequenceProvider annotation (enumag)
Browse files Browse the repository at this point in the history
This PR was squashed before being merged into the 3.4 branch (closes #32044).

Discussion
----------

[Validator] Fix GroupSequenceProvider annotation

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

The possibility was added in #19982, just forgot to fix this annotation back then.

Commits
-------

bf6d253 [Validator] Fix GroupSequenceProvider annotation
  • Loading branch information
fabpot committed Jun 20, 2019
2 parents 8ad74a8 + bf6d253 commit 6fcd319
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -57,7 +57,7 @@ class GroupSequence
/**
* The groups in the sequence.
*
* @var string[]|array[]|GroupSequence[]
* @var string[]|string[][]|GroupSequence[]
*/
public $groups;

Expand Down
Expand Up @@ -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();
}

0 comments on commit 6fcd319

Please sign in to comment.