Output.php
3c27a3e7
 <?php
 /**
  * Created by IntelliJ IDEA.
  * User: nosko
  * Date: 1/26/13
  * Time: 10:53 PM
  * To change this template use File | Settings | File Templates.
  */
 
 require_once "iOutput.php";
 
 class Output implements iOutput {
     protected $output = "";
     public  $newLine = "<br>\n";
 
     public function log($message) {
         $this->output .= $message;
     }
 
     public function newLine() {
         return $this->newLine;
     }
 
     public function display(){}
 }