You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added the capability of specifying an array of filters during event registration.
Filters are specified as regular expressions.
Example:
$client->registerEventListener(
function($event) {var_dump($event);},
array(
'event' => '/Hangup/',
'channel' => '/Local\/27.*/',
)
);
Cherry-Picked b442e8c from @sctt (marcelog#107)
0 commit comments