for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\helpers;
use yii\helpers\Html;
class PageTitle
{
public static function process($text)
$text = str_replace('"', '“', $text);
$text = Html::encode($text);
return $text;
}