Horde_Kolab_Storage_Driver::getBackend PHP 메소드

getBackend() 공개 메소드

If there is no driver set the driver should be constructed within this method.
public getBackend ( ) : mixed
리턴 mixed The backend driver.
    public function getBackend();

Usage Example

예제 #1
0
파일: Base.php 프로젝트: jubinpatel/horde
 /**
  * Returns the actual backend driver.
  *
  * If there is no driver set the driver should be constructed within this
  * method.
  *
  * @return mixed The backend driver.
  */
 public function getBackend()
 {
     return $this->_driver->getBackend();
 }