/**
  * Get the instance of the latest created object or create a new one.
  */
 public static function Instance()
 {
     return is_null(self::$instance) ? self::$instance = new static() : self::$instance;
 }