BaiduStore::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $clientId )
    public function __construct($clientId)
    {
        $this->clientId = $clientId;
    }

Usage Example

예제 #1
0
 /**
  * @param string   $clientId
  * @param Memcache $memcache
  */
 public function __construct($clientId, $memcache, $sessionId)
 {
     $this->memcache = $memcache;
     $this->sessionId = $sessionId;
     parent::__construct($clientId);
 }