1
0
Fork 0
mirror of https://github.com/RaspbianFrance/raspisms.git synced 2025-05-11 02:36:26 +02:00

style validation fix

This commit is contained in:
osaajani 2021-06-17 00:51:33 +02:00
parent f1d47a25ed
commit 017c7fee53
42 changed files with 526 additions and 497 deletions
models

View file

@ -12,13 +12,13 @@
namespace models;
/**
* Manage bdd operations for calls
*/
* Manage bdd operations for calls.
*/
class Call extends StandardModel
{
const DIRECTION_INBOUND = 'inbound';
const DIRECTION_OUTBOUND = 'outbound';
/**
* Return a list of call for a user.
* Add a column contact_name and phone_name when available.
@ -62,11 +62,11 @@ namespace models;
}
/**
* Get a call for a user by his phone and uid
*
* @param int $id_user : user id
* Get a call for a user by his phone and uid.
*
* @param int $id_user : user id
* @param int $id_phone : phone id
* @param int $uid : call uid
* @param int $uid : call uid
*
* @return array : the call or an empty array
*/