Esempio n. 1
0
File: AGI.php Progetto: 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;
 }