Updates to more strict type checking after some static analysis

This commit is contained in:
Alex Cabal 2019-01-17 21:26:48 -06:00
parent 152f86d616
commit c879dcab34
10 changed files with 50 additions and 34 deletions

View file

@ -19,7 +19,7 @@ class Template{
ob_start();
eval(' ?>' . $fileContents . '<? ');
$contents = ob_get_contents();
$contents = ob_get_contents() ?: '';
ob_end_clean();
return $contents;