aboutsummaryrefslogtreecommitdiff
path: root/src/callnotifier/CallMonitor
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2012-07-31 07:49:52 +0200
committerChristian Weiske <cweiske@cweiske.de>2012-07-31 07:49:52 +0200
commitdec68e4aaf86f4db07d0a313516319a6d37d88fe (patch)
treea29cc26e8ddf8b7ae967a6593ce2e528203cd072 /src/callnotifier/CallMonitor
parent822f3d0bb9ca915fd853fa2fa737bffdc8e58b40 (diff)
downloadauerswald-callnotifier-dec68e4aaf86f4db07d0a313516319a6d37d88fe.tar.gz
auerswald-callnotifier-dec68e4aaf86f4db07d0a313516319a6d37d88fe.zip
call echo logger
Diffstat (limited to 'src/callnotifier/CallMonitor')
-rw-r--r--src/callnotifier/CallMonitor/Call.php34
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;
+
+}
+
+?>