How can I disable auto escaping for an individual flashSession message? Here's an example of what I am doing in my controller;
$this->flashSession->warning('<div class="header">Warning!</div><div class="content">This is a warning message...</div>');
The divs in the code above get escaped in Phalcon 3. How can I disaable escaping for this message so it displays correctly?