4 * Interface that deferrable updates can implement. DeferredUpdates uses this to merge
5 * all pending updates of PHP class into a single update by calling merge().
9 interface MergeableUpdate
{
11 * Merge this update with $update
13 * @param MergeableUpdate $update Update of the same class type
15 function merge( MergeableUpdate
$update );