StringOperators.php 256 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php declare( strict_types=1 ); namespace ACP\Expression; interface StringOperators { public const CONTAINS = 'contains'; public const NOT_CONTAINS = 'not_contains'; public const STARTS_WITH = 'starts_with'; public const ENDS_WITH = 'ends_with'; }