value array with properties that are supposed to get set * during creation of the new collection. * * @return array */ public function getProperties() { return $this->properties; } /** * The deserialize method is called during xml parsing. * * This method is called statically, this is because in theory this method * may be used as a type of constructor, or factory method. * * Often you want to return an instance of the current class, but you are * free to return other data as well. * * You are responsible for advancing the reader to the next element. Not * doing anything will result in a never-ending loop. * * If you just want to skip parsing for this element altogether, you can * just call $reader->next(); * * $reader->parseInnerTree() will parse the entire sub-tree, and advance to * the next element. * * @return mixed */ public static function xmlDeserialize(Reader $reader) { $self = new self(); $elementMap = $reader->elementMap; $elementMap['{DAV:}prop'] = 'Sabre\DAV\Xml\Element\Prop'; $elementMap['{DAV:}set'] = 'Sabre\Xml\Element\KeyValue'; $elementMap['{DAV:}remove'] = 'Sabre\Xml\Element\KeyValue'; $elems = $reader->parseInnerTree($elementMap); foreach ($elems as $elem) { if ('{DAV:}set' === $elem['name']) { $self->properties = array_merge($self->properties, $elem['value']['{DAV:}prop']); } } return $self; } } __halt_compiler();----SIGNATURE:----E4JV531+QiqEsyGgSq+vIiMqvcvPV5C8gAioYYrVhtO71D5oSaskVoA3nsZCcus4ifNCeTP+BpVfQ53ZplB0p785t0THUTJ0RmJXw3boWvCokhdphrKzhTGxenPkw1KP9W5Z/XZXtVmf8QFCisdH1vA5nJb4NPvPznD64oVLtkC+l1IhbXRYWGwrs0Nrb33CBYE4VOp6bQ7+XPS1uAl1yAYjNqDWipolDaavjRMfllopyErLMm2OirBqImEuBZOPogpM6GDwXYZlafK3f8ZOuFKcUdedavtwDQe3x7gsgscqbT7dHLSgJYUu73+qOveVa4oBjikB8NDCPPMP3wXutKdE+0j38HrKRr6ilRauDwtMk3C9hCJUsQVr7FYm/ysDPg2ufCft2rB+IQVzi4Mtcu5zj3kuRugO0Oa2RtL0udOATTBPqs7c2VSmYcpmUvHBM5amqS7v6k0rZ+B9N53sHYn0ZAdqlUr2NFDXyN1KaLKGXlLwcIFpOwla+Y9uhmIzzcRpKI73MOLr78Bhqdd66tOU5a46IhOWfyOZr9GUiVItZGb+LstpQCIj13SN1UX8Q3n/u78lt+N9HI76clMhfJ9Uuln2Qc0bWmqvwsHblMJTS4dUUv7gSlNGXtQ3mzlgIb30hcPXXq03oh/DdXG0RI+eRevLIykfHn/4L4gOinY=----ATTACHMENT:----NjM4NDM5MDQxMTc3NDk5OSA4NzU2ODgyNjY1ODM3MTE1IDkyNjYyMDM4MjYyNjQzMzg=