15 lines
347 B
PHP
15 lines
347 B
PHP
<?php
|
|
|
|
namespace Lucent\Query\Operator;
|
|
|
|
class NotInNum extends Operator
|
|
{
|
|
public string $name = "ninnum";
|
|
public string $label = "Not in number list";
|
|
public string $symbol = "not in";
|
|
public array $uis = ["number"];
|
|
public bool $hasValue = true;
|
|
public string $converter = \Lucent\Query\BuilderConverter\InNum::class;
|
|
|
|
}
|