Skip to content

Commit 5bf56a3

Browse files
committed
php-cs-fixer it up
1 parent 667fee0 commit 5bf56a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Doctrine/EntityRegenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function regenerateEntities(string $classOrNamespace): void
125125
$relation = (new RelationManyToOne(
126126
propertyName: $mapping['fieldName'],
127127
targetClassName: $mapping['targetEntity'],
128-
targetPropertyName:$mapping['inversedBy'],
128+
targetPropertyName: $mapping['inversedBy'],
129129
mapInverseRelation: null !== $mapping['inversedBy'],
130130
))
131131
->setIsNullable($getIsNullable($mapping))
@@ -138,7 +138,7 @@ public function regenerateEntities(string $classOrNamespace): void
138138
$relation = (new RelationOneToMany(
139139
propertyName: $mapping['fieldName'],
140140
targetClassName: $mapping['targetEntity'],
141-
targetPropertyName:$mapping['mappedBy'],
141+
targetPropertyName: $mapping['mappedBy'],
142142
))
143143
->setOrphanRemoval($mapping['orphanRemoval'])
144144
;

0 commit comments

Comments
 (0)