refactoring of filters
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user