You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Util/PropertyPath.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -516,7 +516,7 @@ protected function writeProperty(&$objectOrArray, $property, $singular, $isIndex
516
516
$objectOrArray->$property = $value;
517
517
} elseif ($reflClass->hasProperty($property)) {
518
518
if (!$reflClass->getProperty($property)->isPublic()) {
519
-
thrownewPropertyAccessDeniedException(sprintf('Property "%s" is not public in class "%s". Maybe you should create the method "%s()"?', $property, $reflClass->name, $setter));
519
+
thrownewPropertyAccessDeniedException(sprintf('Property "%s" is not public in class "%s"%s. Maybe you should create the method "%s()"?', $property, $reflClass->name, $adderRemoverError, $setter));
0 commit comments