separation of parameter types. numbers are highlighted in red now
[auerswald-callnotifier.git] / src / callnotifier / EDSS1 / Parameter.php
index ded30309f580ddc699a6642c45511d21ef5c2226..9c1a99c489435233bad776d7d09071ed142526bd 100644 (file)
@@ -11,6 +11,21 @@ class EDSS1_Parameter
     public $type;
     public $length;
     public $data;
+
+    /**
+     * Internal title of the parameter type
+     */
+    public $title;
+
+    public function __construct($type = null)
+    {
+        $this->type = $type;
+    }
+
+    public function setData($data)
+    {
+        $this->data = $data;
+    }
 }
 
 ?>