Files
lucent-laravel/src/Query/Operator/NotIn.php
T
2024-08-24 17:22:40 +03:00

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;
}