summaryrefslogtreecommitdiff
path: root/src/Build/TopLevelHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Build/TopLevelHandler.php')
-rw-r--r--src/Build/TopLevelHandler.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Build/TopLevelHandler.php b/src/Build/TopLevelHandler.php
index edb500d..0df2b60 100644
--- a/src/Build/TopLevelHandler.php
+++ b/src/Build/TopLevelHandler.php
@@ -33,6 +33,8 @@ final class TopLevelHandler 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
+ ));
}
}