Example #1
0
 public static function getInstance()
 {
     if (self::$Instance === null) {
         $type = self::getType();
         $class_name = "{$type}Yaml";
         self::$Instance = new $class_name();
     }
     return self::$Instance;
 }