summaryrefslogtreecommitdiff
path: root/src/Build/RelationshipHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Build/RelationshipHandler.php')
-rw-r--r--src/Build/RelationshipHandler.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Build/RelationshipHandler.php b/src/Build/RelationshipHandler.php
index c17def9..4f0e752 100644
--- a/src/Build/RelationshipHandler.php
+++ b/src/Build/RelationshipHandler.php
@@ -119,6 +119,8 @@ final class RelationshipHandler implements RegionHandler
{
$exported = VarExporter::export($this->data);
- file_put_contents($destination, '<?php return '.$exported.';');
+ file_put_contents($destination, sprintf('<?php return %s;'.PHP_EOL,
+ $exported
+ ));
}
}