| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function __construct($orderToken, $channelCode) |
||
| 24 | { |
||
| 25 | Assert::string($orderToken, 'Expected order token to be string, got %s'); |
||
| 26 | Assert::string($channelCode, 'Expected channel code to be string, got %s'); |
||
| 27 | |||
| 28 | $this->orderToken = $orderToken; |
||
| 29 | $this->channelCode = $channelCode; |
||
| 30 | } |
||
| 31 | |||
| 48 |