mirror of
https://github.com/pierre42100/ComunicAPI
synced 2024-11-23 22:09:29 +00:00
21 lines
292 B
PHP
21 lines
292 B
PHP
|
<?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());
|