Пример #1
0
 /**
  * Get a domain property value
  *
  * Multi-level properties might be traversed by property name paths separated with colons (":").
  *
  * @param string $property Property name
  * @return mixed Property value
  */
 public function getDomain($property)
 {
     return $this->domainProperties->getProperty($property);
 }
 /**
  * Get a processing instruction
  *
  * @param string $procInst Processing instruction name
  * @return mixed Processing instruction
  */
 public function getProcessingInstruction($procInst)
 {
     return $this->processingInstructions->getProperty($procInst);
 }