public static function getInstance() { if (self::$Instance === null) { $type = self::getType(); $class_name = "{$type}Cache"; self::$Instance = new $class_name(); } return self::$Instance; }