Metaregistrar\EPP\eppRequest::addNamespaces PHP Method

addNamespaces() public method

public addNamespaces ( $namespaces )
    public function addNamespaces($namespaces)
    {
        if (is_array($namespaces)) {
            foreach ($namespaces as $namespace => $xmlns) {
                $this->getEpp()->setAttribute('xmlns:' . $xmlns, $namespace);
                /*$object = $xmlns.'object';
                  if ($object == 'secDNSobject')
                  {
                      // ADD SECDNS to domain string
                      $object = 'domainobject';
                  }
                  if (property_exists($this, $object) && ($this->$object))
                  {
                      $this->$object->setAttribute('xmlns:'.$xmlns,$namespace);
                  }*/
            }
        }
    }