Rename all the files to camelCase and update the class name in the files

This commit is contained in:
2021-05-07 12:19:08 +02:00
parent 276a5c4cbd
commit c8d275be31
82 changed files with 101 additions and 101 deletions

20
src/Output.php Normal file
View File

@@ -0,0 +1,20 @@
<?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");
}
}