radfusion/app/Domain/Rule/MatchCondition.php
2025-01-22 17:08:17 +06:00

11 lines
135 B
PHP

<?php
namespace App\Domain\Rule;
enum MatchCondition: string
{
case ALL = 'ALL';
case ANY = 'ANY';
case NONE = 'NONE';
}