Skip to content

Commit dedee7b

Browse files
committed
change exception message wording
1 parent da187e5 commit dedee7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/Helper/FormHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function interactUsingForm(
7373
$formErrors = $form->getErrors(true, false);
7474
$output->write(sprintf('Invalid data provided: %s', $formErrors));
7575
if ($this->noErrorsCanBeFixed($formErrors)) {
76-
throw new \RuntimeException('Errors out of the form\'s scope - do you have validation constraints on properties not exposed to the form?');
76+
throw new \RuntimeException('Errors out of the form\'s scope - do you have validation constraints on properties not used in the form?');
7777
}
7878
array_map(
7979
function (FormInterface $formField) use (&$validFormFields) {

0 commit comments

Comments
 (0)