link to my blog post
[auerswald-callnotifier.git] / src / callnotifier / CallMonitor / Detailler.php
1 <?php
2 namespace callnotifier;
3
4 interface CallMonitor_Detailler
5 {
6     /**
7      * Loads additional data into the call, e.g. name of the caller
8      *
9      * @param CallMonitor_Call $call Call to update
10      *
11      * @return void
12      */
13     public function loadCallDetails(CallMonitor_Call $call);
14 }
15
16 ?>