ComunicAPI/classes/components/friends.php

20 lines
236 B
PHP
Raw Normal View History

2017-05-28 12:09:20 +00:00
<?php
/**
* Friends component
*
* @author Pierre HUBERT
*/
class friends {
/**
* Public construcor
*/
public function __construct(){
//Nothing now
}
}
//Register component
Components::register("friends", new friends());