getFreebusyServer() 공개 메소드

Return the freebusy server.
public getFreebusyServer ( ) : string
리턴 string The freebusy host for the current user.
예제 #1
0
파일: BaseTest.php 프로젝트: horde/horde
 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();
 }