Output handling to separate classes.
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Frs\Output;
|
||||
|
||||
use \Frs\Output\GenericOutput;
|
||||
|
||||
class HtmlOutput extends GenericOutput
|
||||
{
|
||||
public function sendOutputToStdout()
|
||||
{
|
||||
echo $this->getRenderedOutput();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user