ComunicAPI/classes/components/friends.php
2017-05-28 14:09:20 +02:00

20 lines
236 B
PHP

<?php
/**
* Friends component
*
* @author Pierre HUBERT
*/
class friends {
/**
* Public construcor
*/
public function __construct(){
//Nothing now
}
}
//Register component
Components::register("friends", new friends());