summaryrefslogtreecommitdiff
path: root/tests/test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.php')
-rw-r--r--tests/test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.php b/tests/test.php
index f051d94..4baa4d7 100644
--- a/tests/test.php
+++ b/tests/test.php
@@ -15,12 +15,12 @@ class TestStorage implements ste\StorageAccess {
$mode = ste\StorageAccess::MODE_SOURCE;
return file_get_contents($tpl);
}
-
+
public function save($tpl, $data, $mode) {
if($mode != ste\StorageAccess::MODE_TRANSCOMPILED) {
return;
}
-
+
file_put_contents("$tpl.transc.php", $data);
}
}