CommonITILObject::getUsers PHP Метод

getUsers() публичный Метод

get users linked to a object
public getUsers ( $type ) : array
$type type to search (see constants)
Результат array
    function getUsers($type)
    {
        if (isset($this->users[$type])) {
            return $this->users[$type];
        }
        return array();
    }
CommonITILObject