CommonITILObject::getSuppliers PHP Метод

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

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