diff options
author | Kevin Chabowski <kevin@kch42.de> | 2015-04-14 22:37:15 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2015-04-14 22:37:15 +0200 |
commit | b52413dbb4d8333d5fe2a351780e20b04c4525a2 (patch) | |
tree | 2f539192bb1d6e330bfb5845b72a6131cf7bcdae /tests/test.php | |
parent | 31241a2ab9c97e09ddbd4fb9e41b4e2e756d8ed4 (diff) | |
download | ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.tar.gz ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.tar.bz2 ste-b52413dbb4d8333d5fe2a351780e20b04c4525a2.zip |
Trim whitespacedevelop
Diffstat (limited to 'tests/test.php')
-rw-r--r-- | tests/test.php | 4 |
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); } } |