radfusion/app/Domain/Rule/MatchMode.php
2025-01-22 11:52:20 +06:00

13 lines
216 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 Regex = 'REGEX';
}