/ */ namespace P4\Model\Resolvable; interface ResolvableInterface { const RESOLVE_ACCEPT_MERGED = 'acceptMerged'; const RESOLVE_ACCEPT_YOURS = 'acceptYours'; const RESOLVE_ACCEPT_THEIRS = 'acceptTheirs'; const RESOLVE_ACCEPT_SAFE = 'acceptSafe'; const RESOLVE_ACCEPT_FORCE = 'acceptForce'; const IGNORE_WHITESPACE_CHANGES = 'ignoreWhitespaceChanges'; const IGNORE_WHITESPACE = 'ignoreWhitespace'; const IGNORE_LINE_ENDINGS = 'ingoreLineEndings'; }