Skip to content

Commit 3f8c2d5

Browse files
committed
Fixed return values of SingleRelation field
1 parent e7a449b commit 3f8c2d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Mapping/SingleRelation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ public function compile(Node\Expr $outputNode): array
7979
new Node\Expr\Variable('item'),
8080
(new PropertyPathBuilder($this->outputPath, new Node\Expr\Variable('input')))->getNode()
8181
),
82-
$this->child->compile($outputNode)
83-
]
82+
],
83+
$this->child->compile($outputNode)
8484
);
8585
}
8686
}

0 commit comments

Comments
 (0)