/** * Access AGI client to set the variable. * * @param string $name Variable name. * @param string $value Value. * * @return void */ protected function setCallerIdVariable($name, $value) { $this->_client->setVariable('CALLERID(' . $name . ')', $value); }
/** * Access AGI client to set the variable. * * @param string $name Variable name. * @param string $value Value. * * @return void */ protected function setCDRVariable($name, $value) { $this->client->setVariable('CDR(' . $name . ')', $value); }