Source of file IAsyncAgiStartEvent.php
Size: 0,486 Bytes - Last Modified: 2019-04-25T22:07:38+00:00
/data/development/sccp/sources/PAMI/src/PAMI/AsyncAgi/Event/IAsyncAgiStartEvent.php
| 12345678910111213141516171819202122232425262728293031 | <?phpnamespace PAMI\AsyncAgi\Event; /** * Async AGI Event interface. */interface IAsyncAgiStartEvent {/** * Returns key: 'Privilege'. * * @return string */public function getPrivilege(); /** * Returns key: 'Channel'. * * @return string */public function getChannel(); /** * Returns the original environment received with this event. * * @return string */public function getEnvironment(); } |