Exemplo n.º 1
0
 /**
  * Singleton pattern. Get the instance of the latest created object or create a new one.
  * @return CLydia The instance of this class.
  */
 public static function Instance()
 {
     if (self::$instance == null) {
         self::$instance = new Origin();
     }
     return self::$instance;
 }