| 1 | <?php |
||
| 12 | class ProductConfiguration |
||
| 13 | { |
||
| 14 | |||
| 15 | /** @var array DeliveryMethod[] */ |
||
| 16 | private $deliveryMethods = array(); |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return DeliveryMethod[] |
||
| 20 | */ |
||
| 21 | public function getDeliveryMethods() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param DeliveryMethod $deliveryMethod |
||
| 28 | */ |
||
| 29 | public function addDeliveryMethod(DeliveryMethod $deliveryMethod) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param SimpleXMLElement $xml |
||
| 36 | * |
||
| 37 | * @return ProductConfiguration |
||
| 38 | */ |
||
| 39 | public static function createFromXML(SimpleXMLElement $xml) |
||
| 52 | } |
||
| 53 |