15 lines
344 B
PHP
15 lines
344 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Lucent\Query\Operator;
|
||
|
|
|
||
|
|
class NotExists extends Operator
|
||
|
|
{
|
||
|
|
|
||
|
|
public string $name = "nexists";
|
||
|
|
public string $label = "Not Exists";
|
||
|
|
public string $symbol = "not exists";
|
||
|
|
public array $uis = ["*"];
|
||
|
|
public bool $hasValue = true;
|
||
|
|
public string $converter = \Lucent\Query\BuilderConverter\NotExists::class;
|
||
|
|
|
||
|
|
}
|