diff options
Diffstat (limited to 'src/callnotifier/CallMonitor/Call.php')
| -rw-r--r-- | src/callnotifier/CallMonitor/Call.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/callnotifier/CallMonitor/Call.php b/src/callnotifier/CallMonitor/Call.php new file mode 100644 index 0000000..3ebd251 --- /dev/null +++ b/src/callnotifier/CallMonitor/Call.php @@ -0,0 +1,34 @@ +<?php +namespace callnotifier; + +class CallMonitor_Call +{ + /** + * Telephone number of caller + * + * @var string + */ + public $from; + + /** + * Telephone number of called person + * + * @var string + */ + public $to; + + /** + * Time when the call started, unix timestamp + * + * @var int + */ + public $start; + + /** + * Time when the call ended, unix timestamp + */ + public $end; + +} + +?> |
