예제 #1
0
파일: Client.php 프로젝트: JianKongBao/AAPF
 /**
  * @static
  * @return REST_Client
  */
 public static function instance()
 {
     if (self::$self == NULL) {
         self::$self = new self();
     }
     return self::$self;
 }