This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
php-frs/lib/Frs/Output/HtmlOutput.php

14 lines
199 B
PHP

<?php
namespace Frs\Output;
use \Frs\Output\GenericOutput;
class HtmlOutput extends GenericOutput
{
public function sendOutputToStdout()
{
echo $this->getRenderedOutput();
}
}