ComunicAPI/classes/components/conversations.php
2017-06-10 10:07:03 +02:00

22 lines
518 B
PHP

<?php
/**
* Conversations component
*
* @author Pierre HUBERT
*/
class conversations {
/**
* Create a new conversation
*
* @param Integer $userID The ID of the user creating the conversation
* @param Boolean $follow Defines if the user creating the conversation will follow it
* @param Array $usersList The list of users following the conversation
* @param Mixed $name Optionnal, the name of the conversation
*/
}
//Register component
Components::register("conversations", new conversations());