StringOperators.php 256 Bytes
<?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';

}