Esempio n. 1
0
 /**
  * The singleton access method
  *
  * @author Jonathan Davis
  * @since
  *
  * @return
  **/
 public static function init()
 {
     if (!self::$object instanceof self) {
         self::$object = new self();
     }
     return self::$object;
 }