mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
Fix arg type for strtolower by typing function arguments
This commit is contained in:
@@ -2200,8 +2200,8 @@ class Ticket extends CommonObject
|
||||
/**
|
||||
* Retrieve information about internal contacts
|
||||
*
|
||||
* @param int $status Status of user or company
|
||||
* @return array Array with datas : firstname, lastname, socid (-1 for internal users), email, code, libelle, status
|
||||
* @param int $status Status of user or company array<array{id:int,email:string,firstname:string,lastname:string,libelle:string}>
|
||||
* @return array<array{id:int,email:string,firstname:string,lastname:string,libelle:string,socid:int,code:string,status:int}> Array with datas : firstname, lastname, socid (-1 for internal users), email, code, libelle, status
|
||||
*/
|
||||
public function getInfosTicketInternalContact($status = -1)
|
||||
{
|
||||
@@ -2295,7 +2295,7 @@ class Ticket extends CommonObject
|
||||
* @param int $list 0:Return array contains all properties, 1:Return array contains just id
|
||||
* @param string $code Filter on this code of contact type ('SHIPPING', 'BILLING', ...)
|
||||
* @param int $status Status of user or company
|
||||
* @return array|int Array of array('email'=>..., 'lastname'=>...)
|
||||
* @return array<int|array{source:string,id:int,rowid:int,email:string,civility:string,firstname:string,lastname:string,labeltype:string,libelle:string,socid:int,code:string,status:int,statuscontact:string,fk_c_typecontact:string,phone:string,phone_mobile:string,nom:string}>|int Array of array('email'=>..., 'lastname'=>...)
|
||||
*/
|
||||
public function listeContact($statusoflink = -1, $source = 'external', $list = 0, $code = '', $status = -1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user