for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AppUtils;
class VariableInfo_Renderer_HTML_String extends VariableInfo_Renderer_HTML
{
protected function _render()
$string = $this->info->toString();
$string = $this->cutString($string);
$string = nl2br(htmlspecialchars($string));
return '"'.$string.'"';
}