Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct(int $retCode, string $retMsg, ?array $retExtInfo, int $time) |
||
19 | { |
||
20 | $this->retCode = $retCode; |
||
21 | $this->retMsg = $retMsg; |
||
22 | $this->retExtInfo = $retExtInfo ?? []; |
||
23 | $this->time = DateTimeHelper::makeFromTimestamp($time); |
||
24 | $this->result = new EntityCollection(); |
||
25 | } |
||
51 | } |