예제 #1
0
파일: Log.php 프로젝트: NareshChennuri/pyng
 /**
  * @param array $options
  * @return JO_Log
  */
 public static function getInstance($options = array())
 {
     if (self::$_instance == null) {
         self::$_instance = new self($options);
     }
     return self::$_instance;
 }