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

This commit is contained in:
2026-01-24 17:15:06 -05:00
parent 8ff7a36752
commit 7008b8d632
5 changed files with 417 additions and 279 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);