/** * Retrieves the singleton instance of this class. * * @return sfConfigCache A sfConfigCache instance */ public static function getInstance() { if (!self::$instance) { self::$instance = new sfConfigCache(); } return self::$instance; }