You are here

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

EntityConflictResolutionEvent

Namespace

Drupal\conflict\Event

Code

public function removeConflict($property) {
  unset($this->conflicts[$property]);
}