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

deleteNodeImmediately() public method

{@inheritDoc}
public deleteNodeImmediately ( $path )
    public function deleteNodeImmediately($path)
    {
        $this->prepareSave();
        $this->deleteNode($path);
        $this->finishSave();
        return true;
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function deleteNodeImmediately($absPath)
 {
     $result = parent::deleteNodeImmediately($absPath);
     if ($result) {
         $this->clearCaches();
     }
     return $result;
 }
All Usage Examples Of Jackalope\Transport\DoctrineDBAL\Client::deleteNodeImmediately