summaryrefslogtreecommitdiff
path: root/tests/test.php
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2015-04-14 22:37:15 +0200
committerKevin Chabowski <kevin@kch42.de>2015-04-14 22:37:15 +0200
commitb52413dbb4d8333d5fe2a351780e20b04c4525a2 (patch)
tree2f539192bb1d6e330bfb5845b72a6131cf7bcdae /tests/test.php
parent31241a2ab9c97e09ddbd4fb9e41b4e2e756d8ed4 (diff)
downloadste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.tar.gz
ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.tar.bz2
ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.zip
Trim whitespacedevelop
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);
}
}