1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Core;
4:
5: /**
6: * Text comparison flags
7: *
8: * {@see TextComparisonFlag} and {@see TextComparisonAlgorithm} values combine
9: * to form one bitmask and cannot intersect.
10: */
11: interface TextComparisonFlag
12: {
13: /**
14: * Normalise values before comparing them
15: */
16: public const NORMALISE = 64;
17: }
18: