Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | final class Order |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string The order ID |
||
14 | */ |
||
15 | private $orderId; |
||
16 | |||
17 | /** |
||
18 | * Order constructor. |
||
19 | * @param string $orderId The order Id for the order |
||
20 | */ |
||
21 | 1 | public function __construct($orderId) |
|
24 | 1 | } |
|
25 | |||
26 | /** |
||
27 | * Serializes the order GPG API object |
||
28 | * @return array serialized object |
||
29 | */ |
||
30 | 1 | public function serialize() |
|
36 | } |