Output handling to separate classes.

This commit is contained in:
2016-07-10 16:18:16 +02:00
parent 89af62d083
commit be90c98118
4 changed files with 92 additions and 17 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace Frs\Output;
use \Frs\Output\GenericOutput;
class HtmlOutput extends GenericOutput
{
public function sendOutputToStdout()
{
echo $this->getRenderedOutput();
}
}