refactoring of filters

This commit is contained in:
2024-08-24 17:22:40 +03:00
parent 97ad9de3d2
commit d9e2c4954a
57 changed files with 1175 additions and 349 deletions
+14
View File
@@ -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;
}