- Filling values of context if vars exists within it

This commit is contained in:
Dave Mc Nicoll 2024-06-04 13:38:46 +00:00
parent 1991122c32
commit 5e9ad29f3c
1 changed files with 5 additions and 2 deletions

View File

@ -147,10 +147,13 @@ class FormContext implements FormContextInterface
protected function fillValues() : void protected function fillValues() : void
{ {
# Skipping overrides of this particular class vars as a security measure
$skipping = array_keys(array_change_key_case(get_class_vars(FormContext::class), CASE_LOWER));
foreach($this->values as $property => $value) { foreach($this->values as $property => $value) {
if (property_exists($this, $property)) { if ( ! in_array(strtolower($property), $skipping) && property_exists($this, $property)) {
$this->$property = $value; $this->$property = $value;
} }
} }
} }
} }