Skip to content

Commit

Permalink
Fix minor cs
Browse files Browse the repository at this point in the history
  • Loading branch information
DAGpro committed Oct 6, 2024
1 parent 1f9b4b1 commit a3e6a4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FormHydrator.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ private function extractStringKeys(iterable $array): array
private function filterDataNestedForms(FormModelInterface $formModel, array &$data): array
{
$reflection = new \ReflectionClass($formModel);
$properties = $reflection->getProperties(\ReflectionProperty::IS_PUBLIC |
$properties = $reflection->getProperties(
\ReflectionProperty::IS_PUBLIC |
\ReflectionProperty::IS_PROTECTED |
\ReflectionProperty::IS_PRIVATE,
);
Expand Down

0 comments on commit a3e6a4e

Please sign in to comment.