You are here

final class ConflictTypes in Conflict 8.2

Hierarchy

Expanded class hierarchy of ConflictTypes

5 files declare their use of ConflictTypes
ContentEntityConflictHandler.php in src/Entity/ContentEntityConflictHandler.php
DefaultConflictDiscovery.php in src/ConflictDiscovery/DefaultConflictDiscovery.php
FieldComparatorDefault.php in src/Plugin/Conflict/FieldComparator/FieldComparatorDefault.php
FieldComparatorParagraphReference.php in modules/conflict_paragraphs/src/Plugin/Conflict/FieldComparator/FieldComparatorParagraphReference.php
MergeRemoteOnlyChanges.php in src/ConflictResolution/MergeRemoteOnlyChanges.php

File

src/ConflictTypes.php, line 5

Namespace

Drupal\conflict
View source
final class ConflictTypes {

  /**
   * Indicates a change only on the remote version.
   */
  const CONFLICT_TYPE_REMOTE = 'conflict_remote';

  /**
   * Indicates a different change both on the local and remote version.
   */
  const CONFLICT_TYPE_LOCAL_REMOTE = 'conflict_local_remote';

}

Members

Namesort descending Modifiers Type Description Overrides
ConflictTypes::CONFLICT_TYPE_LOCAL_REMOTE constant Indicates a different change both on the local and remote version.
ConflictTypes::CONFLICT_TYPE_REMOTE constant Indicates a change only on the remote version.