예제 #1
0
 /**
  * Get singleton intance
  * @return SimpleHistory instance
  */
 public static function get_instance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new SimpleHistory();
     }
     return self::$instance;
 }