public function EntityConflictResolutionEvent::removeConflict in Conflict 8.2
Removes a conflict.
This method should called when a conflict has been resolved or the property value on the resulting entity satisfies the merge strategy.
Parameters
string $property: The conflicting property.
File
- src/
Event/ EntityConflictResolutionEvent.php, line 76
Class
Namespace
Drupal\conflict\EventCode
public function removeConflict($property) {
unset($this->conflicts[$property]);
}