| 1 | <?php |
||
| 26 | class CallerId extends Response |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | private $name; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | private $number; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getName() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | public function getNumber() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @param string $response |
||
| 56 | */ |
||
| 57 | public function __construct($response) |
||
| 64 | |||
| 65 | } |
||
| 66 |