Open
Conversation
Add a BaseConfigObject abstract class with a default implementation for __set_state(), making use of PHPs named parameter and splat operator combo
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
fix: Fix github connection socket tests fix: Fix all workflows
3b8bbef to
61e8a98
Compare
Remove the implicit '=' operator shorthand from where() and orWhere() across JoinClause, WhereClause, and HasWhereClause. The operator parameter is now required when the first argument is not a closure.
Add missing where or-variants (orWhereNotNull, orWhereIn, orWhereNotIn, orWhereRaw, whereFullText, orWhereFullText), group by, having, aggregate expressions (COUNT/SUM/MIN/MAX/AVG), full-text search (MATCH AGAINST), bulk insert, INSERT IGNORE, REPLACE INTO, upsert (ON DUPLICATE KEY UPDATE), and order by/limit on Update and Delete. Expression support added to Update::set() and Insert::upsert().
Add unit tests for Select, Delete, Update, Insert, Connection, Result, Row, WriteResult, Raw, JoinClause, ValueGetter, and QueryException. Add integration tests for joins, distinct, stream, and transactions. Remove unnecessary empty guard in JoinClause. Add codeCoverageIgnore for untriggerable catch blocks and infection ignores for equivalent mutants.
Removed unnecessary phpstan ignores, fixed an escaped mutant ignore line number, updated docblocks to use static over $this, and moved array_merges() out of foreach loops
ci(github): Remove push trigger for code coverage workflow ci(github): Fix mariadb 11.4 healthcheck
6ace3a8 to
e31b083
Compare
Schema contract, Column (21 type factories, modifiers, named reference), Index (primary, unique, index, fulltext, foreign key), Blueprint (alter operations), and Table (create, alter, drop, shortcuts).
Assert transaction is no longer active after commit, removing the MethodCallRemoval ignore from infection config.
…tribute Covers default and named connection resolution, wrong resolvable type, wrong parameter type, null type, attribute contract and target.
This was
linked to
issues
Mar 31, 2026
Add CHAR(n) factory method to the Column schema builder for fixed-length character columns.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses #26, #27 and #28