15 lines
382 B
PHP
15 lines
382 B
PHP
<?php
|
|
|
|
namespace Lucent\Query\Operator;
|
|
|
|
class NotIn extends Operator
|
|
{
|
|
public string $name = "nin";
|
|
public string $label = "Not in list";
|
|
public string $symbol = "in";
|
|
public array $uis = ["id", "text", "textarea", "url", "color", "date", "datetime"];
|
|
public bool $hasValue = true;
|
|
public string $converter = \Lucent\Query\BuilderConverter\NotIn::class;
|
|
|
|
}
|