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