/home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Call
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/nexmo/client-core/src/Call/Event.php (1124B)
data = $data;
}
public function getId()
{
return $this->data['uuid'];
}
public function getMessage()
{
return $this->data['message'];
}
public function offsetExists($offset)
{
return isset($this->data[$offset]);
}
public function offsetGet($offset)
{
return $this->data[$offset];
}
public function offsetSet($offset, $value)
{
throw new \RuntimeException('can not set properties directly');
}
public function offsetUnset($offset)
{
throw new \RuntimeException('can not set properties directly');
}
}