/**
  * the singleton pattern
  *
  * @return Expressodriver_Controller
  */
 public static function getInstance()
 {
     if (self::$_instance === NULL) {
         self::$_instance = new Expressodriver_Controller();
     }
     return self::$_instance;
 }