I have followed this simple example https://docs.phalcon.io/en/latest/reference/volt.html#partial-vs-include it generate base.html%%e%%.tpl how to disable generation of these compiled files ?
$compiler = new \Phalcon\Mvc\View\Engine\Volt\Compiler();
$compiler->setOption( 'compiledExtension', '.tpl' );
$compiler->setOption( 'compileAlways', true ); //not working, it still creates tpl file
$tpl = file_get_contents( BASE_DIR . '/layouts/main.html' );
$str = $compiler->compileString( $tpl );