Files
lucent-laravel/src/Query/Operator/NotExists.php
T

15 lines
344 B
PHP
Raw Normal View History

2024-08-24 17:22:40 +03:00
<?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;
}