14 lines
245 B
PHP
14 lines
245 B
PHP
<?php
|
|
|
|
namespace App\Domain\Rule;
|
|
|
|
enum MatchMode: string
|
|
{
|
|
case Exact = 'EXACT';
|
|
case Contains = 'CONTAINS';
|
|
case StartsWith = 'STARTS_WITH';
|
|
case EndsWith = 'ENDS_WITH';
|
|
case InList = 'IN_LIST';
|
|
case Regex = 'REGEX';
|
|
}
|