radfusion/app/Domain/Rule/StringMatchMode.php

13 lines
176 B
PHP

<?php
namespace App\Domain\Rule;
enum StringMatchMode: int
{
case Exact = 0;
case Contains = 1;
case StartsWith = 2;
case EndsWith = 3;
case Regex = 4;
}