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

Return the imap server.
public getImapServer ( ) : string
Результат string The imap host for the current user.
Пример #1
0
 public function testMethodGetimapserverGetsDelegated()
 {
     $session = $this->getMock('Horde_Kolab_Session');
     $session->expects($this->once())->method('getImapServer')->will($this->returnValue('1'));
     $anonymous = new Horde_Kolab_Session_Decorator_Base($session);
     $anonymous->getImapServer();
 }