예제 #1
0
파일: class.me.php 프로젝트: jastuccio/Me
 /**
  * Initialize Class with a new instance
  * 
  * Should be called to boot up the class, stores an instance of itself
  * Me::init()
  * 
  * @since 0.1.0
  * 
  * @global boolean $instance
  * 
  */
 public static function init()
 {
     if (!self::$instance) {
         self::$instance = new Me();
     }
     return self::$instance;
 }