sendContent() protected method

Sends the response content to the client
protected sendContent ( )
コード例 #1
0
ファイル: Response.php プロジェクト: hiqdev/hipanel-core
 public function sendContent()
 {
     if ($this->stream === null) {
         $this->content = Yii::$app->getI18n()->removeLegacyLangTags($this->content);
     }
     parent::sendContent();
 }