git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@6096 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
19 lines
363 B
PHP
19 lines
363 B
PHP
<?php
|
|
/** DomFramework
|
|
* @package domframework
|
|
* @author Dominique Fournier <dominique@fournier38.fr>
|
|
* @license BSD
|
|
*/
|
|
|
|
/** Class used to display data
|
|
*/
|
|
class output
|
|
{
|
|
/** Class used to display data
|
|
@param mixed $data The data to be displayed */
|
|
public function out ($data)
|
|
{
|
|
throw new \Exception ("No type of output selected");
|
|
}
|
|
}
|