8000 Changed order of validation · symfony/symfony@a4f208b · GitHub
[go: up one dir, main page]

Skip to content

Commit a4f208b

Browse files
committed
Changed order of validation
1 parent 3e21c4d commit a4f208b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/OptionsResolver/OptionsResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ public function resolve(array $options = array())
230230
// Resolve options
231231
$resolvedOptions = $combinedOptions->all();
232232

233-
$this->validateOptionValues($resolvedOptions);
234233
$this->validateOptionTypes($resolvedOptions);
234+
$this->validateOptionValues($resolvedOptions);
235235

236236
return $resolvedOptions;
237237
}

0 commit comments

Comments
 (0)
0