Can get the messages of a single conversation

This commit is contained in:
Pierre
2017-12-16 14:02:39 +01:00
parent d8de0866ae
commit 3960cbde6c
2 changed files with 40 additions and 1 deletions

View File

@ -576,7 +576,7 @@ class conversations {
* @param Integer $numberOfMessages The number of messages to return
* @return Array The messages of the conversation
*/
public function getLastMessages($conversationID, $numberOfMessages) : array {
public function getLastMessages(int $conversationID, int $numberOfMessages) : array {
//Define conditions
$conditions = "WHERE ID_".$this->conversationsListTable." = ? ORDER BY ID DESC LIMIT ".($numberOfMessages*1);