21 lines
388 B
PHP
21 lines
388 B
PHP
<?php
|
|
/** DomFramework
|
|
* @package domframework
|
|
* @author Dominique Fournier <dominique@fournier38.fr>
|
|
* @license BSD
|
|
*/
|
|
|
|
namespace Domframework;
|
|
|
|
/** 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");
|
|
}
|
|
}
|