10 lines
109 B
PHP
10 lines
109 B
PHP
<?php
|
|
|
|
namespace App\Domain\Rule;
|
|
|
|
enum MatchCondition: string
|
|
{
|
|
case And = 'AND';
|
|
case Or = 'OR';
|
|
}
|