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

deletePropertyImmediately() public method

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

Usage Example

 /**
  * {@inheritDoc}
  */
 public function deletePropertyImmediately($absPath)
 {
     $result = parent::deletePropertyImmediately($absPath);
     if ($result) {
         // we do not have the node here, otherwise we could use clearNodeCache() and then just invalidate all queries
         $this->clearCaches();
     }
     return $result;
 }
All Usage Examples Of Jackalope\Transport\DoctrineDBAL\Client::deletePropertyImmediately