Skip to content

Commit 53b1b1d

Browse files
Merge branch '2.7' into 2.8
* 2.7: [FrameworkBundle] Check for class existence before is_subclass_of Update GroupSequence.php Code enhancement and cleanup [DI] Add anti-regression test Revert "minor #19689 [DI] Cleanup array_key_exists (ro0NL)" [BrowserKit] Fix cookie expiration on 32 bit systems bumped Symfony version to 2.7.18 updated VERSION for 2.7.17 update CONTRIBUTORS for 2.7.17 updated CHANGELOG for 2.7.17 Update misleading comment about RFC4627
2 parents f0df329 + a0e789f commit 53b1b1d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Constraints/GroupSequence.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* When validating a group sequence, each group will only be validated if all
2020
* of the previous groups in the sequence succeeded. For example:
2121
*
22-
* $validator->validate($address, null, new GroupSequence('Basic', 'Strict'));
22+
* $validator->validate($address, null, new GroupSequence(array('Basic', 'Strict')));
2323
*
2424
* In the first step, all constraints that belong to the group "Basic" will be
2525
* validated. If none of the constraints fail, the validator will then validate

Tests/Validator/Abstract2Dot5ApiTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ abstract class Abstract2Dot5ApiTest extends AbstractValidatorTest
4040

4141
/**
4242
* @param MetadataFactoryInterface $metadataFactory
43+
* @param array $objectInitializers
4344
*
4445
* @return ValidatorInterface
4546
*/

0 commit comments

Comments
 (0)