TYPO3  7.6
Delimiters.php
Go to the documentation of this file.
1 <?php
2 
19 namespace cogpowered\FineDiff;
20 
26 abstract class Delimiters
27 {
28  const PARAGRAPH = "\n\r";
29  const SENTENCE = ".\n\r";
30  const WORD = " \t.\n\r";
31  const CHARACTER = "";
32 
36  private function __construct() {}
37 }