示例#1
0
 /**
  * gets instance of this class
  *
  * @return ChromePhp
  */
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }