Fix php style

This commit is contained in:
osaajani 2020-01-17 18:19:25 +01:00
parent 461bd9c98d
commit b8bd067dc7
59 changed files with 2307 additions and 1868 deletions

View file

@ -14,54 +14,53 @@ namespace models;
class Group extends StandardModel
{
/**
* Return table name
* @return string
*/
protected function get_table_name() : string { return 'group'; }
/**
* Return a group by his name for a user
* @param int $id_user : User id
* @param string $name : Group name
* Return a group by his name for a user.
*
* @param int $id_user : User id
* @param string $name : Group name
*
* @return array
*/
public function get_by_name_for_user (int $id_user, string $name)
public function get_by_name_for_user(int $id_user, string $name)
{
return $this->_select_one($this->get_table_name(), ['id_user' => $id_user, 'name' => $name]);
}
/**
* Delete relations between group and contacts for a group
* Delete relations between group and contacts for a group.
*
* @param int $id_group : Group id
*
* @return int : Number of deleted rows
*/
public function delete_group_contact_relations (int $id_group)
public function delete_group_contact_relations(int $id_group)
{
return $this->_delete('group_contact', ['id_group' => $id_group]);
}
/**
* Insert a relation between a group and a contact
* @param int $id_group : Group id
* Insert a relation between a group and a contact.
*
* @param int $id_group : Group id
* @param int $id_contact : Contact id
*
* @return mixed (bool|int) : False on error, new row id else
*/
public function insert_group_contact_relation (int $id_group, int $id_contact)
public function insert_group_contact_relation(int $id_group, int $id_contact)
{
$success = (bool) $this->_insert('group_contact', ['id_group' => $id_group, 'id_contact' => $id_contact]);
return ($success ? $this->_last_id() : false);
return $success ? $this->_last_id() : false;
}
/**
* Get groups contacts
* Get groups contacts.
*
* @param int $id_group : Group id
*
* @return array : Contacts of the group
*/
public function get_contacts (int $id_group)
public function get_contacts(int $id_group)
{
$query = '
SELECT *
@ -73,4 +72,14 @@ namespace models;
return $this->_run_query($query, $params);
}
/**
* Return table name.
*
* @return string
*/
protected function get_table_name(): string
{
return 'group';
}
}