/**
  * Retrieve the singleton instance of this class.
  *
  * @return  sfRouting The sfRouting implementation instance
  */
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new sfRouting();
     }
     return self::$instance;
 }