Horde_Kolab_Session_Decorator_Base::getFreebusyServer PHP Метод

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

Return the freebusy server.
public getFreebusyServer ( ) : string
Результат string The freebusy host for the current user.
    public function getFreebusyServer()
    {
        return $this->_session->getFreebusyServer();
    }

Usage Example

Пример #1
0
 public function testMethodGetfreebusyserverGetsDelegated()
 {
     $session = $this->getMock('Horde_Kolab_Session');
     $session->expects($this->once())->method('getFreebusyServer')->will($this->returnValue('1'));
     $anonymous = new Horde_Kolab_Session_Decorator_Base($session);
     $anonymous->getFreebusyServer();
 }