OCA\OcSms\Lib\ContactCache::getInvertedContacts PHP 메소드

getInvertedContacts() 공개 메소드

public getInvertedContacts ( )
    public function getInvertedContacts()
    {
        // Only load contacts if they aren't in the buffer
        if (count($this->contactsInverted) == 0) {
            $this->loadContacts();
        }
        return $this->contactsInverted;
    }