Files
DomFramework/output.php
2014-02-27 08:47:54 +00:00

10 lines
152 B
PHP

<?php
/** Class used to display datas */
class output
{
public function out ($data)
{
throw new Exception ("No type of output selected");
}
}