Beispiel #1
0
 /**
  * Updates properties on this node.
  *
  * This method received a PropPatch object, which contains all the
  * information about the update.
  *
  * To update specific properties, call the 'handle' method on this object.
  * Read the PropPatch documentation for more information.
  *
  * @param array $mutations
  * @return bool|array
  */
 function propPatch(PropPatch $propPatch)
 {
     $this->properties = $propPatch->getMutations();
     $propPatch->setRemainingResultCode(200);
 }