È necessario restituire un ViewModel all'applicazione con le proprietà impostate in un array associativo, altrimenti verrà restituito un ViewModel predefinito senza proprietà.
Es.:
return new ViewModel(array(
'content' => 'foo bar!'
));
Quindi nel tuo file .phtml:
<p><?php print $this->content; ?></p>