Jackalope\Transport\DoctrineDBAL\Client::unregisterNamespace PHP Method

unregisterNamespace() public method

{@inheritDoc}
public unregisterNamespace ( $prefix )
    public function unregisterNamespace($prefix)
    {
        if (isset($this->coreNamespaces[$prefix])) {
            throw new NamespaceException("Cannot unregister JCR core namespace prefix '{$prefix}'.");
        }
        $this->ensureNamespacesBackup();
        $this->getConnection()->delete('phpcr_namespaces', array('prefix' => $prefix));
        if (!empty($this->namespaces)) {
            unset($this->namespaces[$prefix]);
        }
    }

Usage Example

Example #1
0
 /**
  * {@inheritDoc}
  */
 public function unregisterNamespace($prefix)
 {
     return $this->transport->unregisterNamespace($prefix);
 }
All Usage Examples Of Jackalope\Transport\DoctrineDBAL\Client::unregisterNamespace