Compare commits

...

2 Commits

Author SHA1 Message Date
Dave Mc Nicoll
5e9ad29f3c - Filling values of context if vars exists within it 2024-06-04 13:38:46 +00:00
Dave Mc Nicoll
1991122c32 - Filling values of context if vars exists within it 2024-06-04 13:34:31 +00:00

View File

@ -51,6 +51,8 @@ class FormContext implements FormContextInterface
}
}
$this->fillValues();
$this->files = $request->getUploadedFiles() ?: [];
}
@ -142,4 +144,16 @@ class FormContext implements FormContextInterface
{
$this->messages[] = $message;
}
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) {
if ( ! in_array(strtolower($property), $skipping) && property_exists($this, $property)) {
$this->$property = $value;
}
}
}
}