ComunicAPI/classes/components/accountImage.php

21 lines
292 B
PHP
Raw Normal View History

<?php
/**
* Account image class
*
* @author Pierre HUBERT
*/
class accountImage{
/**
* Public constructor
*/
public function __construct(){
//Nothing now
}
public function test(){
return "test";
}
}
//Register class
Components::register("accountImage", new accountImage());