| 1 | <?php |
||
| 9 | class ReturnInformation |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $code; |
||
| 15 | private $additionalInformation; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function getCode() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getAdditionalInformation() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param $code |
||
| 35 | * @param $additionalInformation |
||
| 36 | * |
||
| 37 | * @return static |
||
| 38 | */ |
||
| 39 | 1 | public static function fromUnstructured($code, $additionalInformation) |
|
| 46 | } |
||
| 47 |