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