Add KeyFilter and deprecate KeyValue object

Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
davidarendsen 2022-10-21 20:03:52 +00:00
commit c66b71ee57
7 changed files with 246 additions and 14 deletions

View file

@ -5,6 +5,9 @@ namespace Arendsen\FluxQueryBuilder\Expression;
use Arendsen\FluxQueryBuilder\Type;
use Exception;
/**
* @deprecated
*/
class KeyValue extends Base
{
public const EQUAL_TO = '==';
@ -204,4 +207,4 @@ class KeyValue extends Base
throw new Exception('Operator "' . $operator . '" is not supported!');
}
}
}
}