separation of parameter types. numbers are highlighted in red now
[auerswald-callnotifier.git] / src / callnotifier / EDSS1 / Parameter / 6C.php
1 <?php
2 namespace callnotifier;
3
4 /**
5  * Information element: Calling party number
6  */
7 class EDSS1_Parameter_6C extends EDSS1_Parameter
8 {
9     public $title = 'Calling party number';
10
11     public $numberType;
12     public $numberingPlan;
13     public $presentationIndicator;
14     public $screeningIndicator;
15     public $number;
16
17     public function setData($data)
18     {
19         parent::setData($data);
20         $this->number = substr($data, 2);
21     }
22 }
23
24 ?>