You are here

function _DiffEngine::MAX_XREF_LENGTH in Diff 5

Same name and namespace in other branches
  1. 5.2 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  2. 6.2 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  3. 6 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  4. 7.3 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
  5. 7.2 DiffEngine.php \_DiffEngine::MAX_XREF_LENGTH()
1 call to _DiffEngine::MAX_XREF_LENGTH()
_DiffEngine::_line_hash in ./DiffEngine.php
* Returns the whole line if it's small enough, or the MD5 hash otherwise

File

./DiffEngine.php, line 134

Class

_DiffEngine
Class used internally by Diff to actually compute the diffs.

Code

function MAX_XREF_LENGTH() {
  return 10000;
}