You are here

ConflictTypes.php in Conflict 8.2

Namespace

Drupal\conflict

File

src/ConflictTypes.php
View source
<?php

namespace Drupal\conflict;

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';

}

Classes

Namesort descending Description
ConflictTypes