radfusion/app/Domain/Rule/MatchMode.php
2025-01-22 19:09:47 +06:00

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';
}