Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored and jordisala1991 committed Aug 9, 2022
1 parent ab27ace commit becb5af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Type/BaseDoctrineORMSerializationType.php
Expand Up @@ -145,8 +145,8 @@ public function buildForm(FormBuilderInterface $builder, array $options): void

if (isset($associationMetadata['joinColumns']['nullable'])) {
$nullable = $associationMetadata['joinColumns']['nullable'];
} elseif (isset($associationMetadata['inverseJoinColumns']['nullable'])) {
$nullable = $associationMetadata['inverseJoinColumns']['nullable'];
} elseif (isset($associationMetadata['joinTable']['inverseJoinColumns']['nullable'])) {
$nullable = $associationMetadata['joinTable']['inverseJoinColumns']['nullable'];
}
}

Expand Down

0 comments on commit becb5af

Please sign in to comment.