| 1 | <?php |
||
| 7 | final class FacadeOrderResponse |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $orderId; |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $orderStatus; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * * @param string $orderId |
||
| 20 | */ |
||
| 21 | public function __construct(string $orderId, string $orderStatus) |
||
| 26 | |||
| 27 | public function getOrderId(): string |
||
| 31 | |||
| 32 | public function getOrderStatus(): string |
||
| 36 | } |
||
| 37 |