Ejemplo n.º 1
0
Archivo: AGI.php Proyecto: rootzig/SNEP
 /**
  * Returns the singleton instance of this class.
  *
  * @return PBX_Asterisk_AGI
  */
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }