Add Field->addQualifier() function; update deps; update README

This commit is contained in:
2026-01-24 16:51:43 -05:00
parent 54b32bc906
commit 2478be1c99
5 changed files with 412 additions and 273 deletions

View File

@@ -192,6 +192,12 @@ describe('->toWhere()', function () {
})->group('sqlite');
});
describe('->andQualifier()', function() {
test('adds a qualifier', function () {
expect(Field::equal('that', '82')->andQualifier('this'))->qualifier->toBe('this');
});
});
describe('::equal()', function () {
test('creates Field w/o parameter', function () {
$field = Field::equal('my_test', 9);