use integer codes, not strings
[auerswald-callnotifier.git] / src / callnotifier / CallMonitor.php
1 <?php
2 namespace callnotifier;
3
4 /**
5  * Watches EDSS1 messages for calls. Keeps an internal call state
6  * and notifies loggers of incoming and finished calls.
7  */
8 class CallMonitor
9 {
10     public function __construct($config, $log)
11     {
12         $this->config = $config;
13         $this->log = $log;
14     }
15
16     public function handle(EDSS1_Message $msg)
17     {
18     }
19
20 }
21
22 ?>