1 | <?php |
||
17 | trait ArticleDataTrait |
||
18 | { |
||
19 | /** |
||
20 | * A list of items in this order |
||
21 | * |
||
22 | * @return ItemBag|null A bag containing items in this order |
||
23 | * |
||
24 | * @codeCoverageIgnore |
||
25 | */ |
||
26 | abstract public function getItems(); |
||
27 | |||
28 | /** |
||
29 | * @param SimpleXMLElement $data |
||
30 | * |
||
31 | * @throws InvalidRequestException |
||
32 | */ |
||
33 | 11 | protected function appendArticleData(SimpleXMLElement $data) |
|
52 | } |
||
53 |