Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
50575fc
style: apply mago format
tyrsson Aug 10, 2026
e308b8a
chore: ignore mago reformat in git blame
tyrsson Aug 10, 2026
c754346
style: fix mago lint findings (string-style, no-multi-assignments, no…
tyrsson Aug 10, 2026
4f041db
test: fix order-dependent failure in ConnectionTest::connectionFails
tyrsson Aug 10, 2026
4931f9a
style: fix mago no-else-clause findings (18 total)
tyrsson Aug 10, 2026
dbafc2d
style: fix mago literal-named-argument findings (13 total)
tyrsson Aug 10, 2026
318b45a
style: fix mago no-negated-ternary findings (8 total)
tyrsson Aug 10, 2026
b35c37e
style: tag TODO comments with @tyrsson (5 total)
tyrsson Aug 10, 2026
1488be7
chore: suppress kan-defect, cyclomatic-complexity, halstead, too-many…
tyrsson Aug 10, 2026
83f575d
fix: remaining mago lint findings across most groups
tyrsson Aug 10, 2026
e907376
fix: catch specific exception types instead of generic Exception
tyrsson Aug 10, 2026
6213c00
fix: add missing #[Override] attributes (mago analyze)
tyrsson Aug 10, 2026
bde6051
fix: document unhandled-thrown-type findings (mago analyze)
tyrsson Aug 10, 2026
2d2eebb
fix: resolve non-existent-method findings (mago analyze)
tyrsson Aug 10, 2026
0fbfc7e
fix: resolve imprecise-type findings (mago analyze)
tyrsson Aug 10, 2026
517dd97
fix: resolve most uninitialized-property findings (mago analyze)
tyrsson Aug 10, 2026
5fae58c
fix: document unhandled-thrown-type in Result::loadFromMysqliResult()
tyrsson Aug 10, 2026
5bf22d7
fix: resolve unused-parameter findings (mago analyze)
tyrsson Aug 10, 2026
9371a24
mago analyze: add row-shape docblocks for Metadata/Source.php query l…
tyrsson Aug 10, 2026
4d917f8
mago analyze: fix real bugs and tighten types in Result.php
tyrsson Aug 10, 2026
01bf652
mago analyze: fix real bugs in Statement.php
tyrsson Aug 10, 2026
1446135
mago analyze: fix real bugs in Connection.php
tyrsson Aug 10, 2026
db9b687
mago analyze: suppress createResult() argument mismatch in Connection…
tyrsson Aug 10, 2026
e73cdab
mago analyze: fix real bugs in Pdo/Connection.php
tyrsson Aug 10, 2026
4e2c1fc
mago analyze: fix real bugs in AlterTableDecorator.php
tyrsson Aug 10, 2026
d052760
mago analyze: fix real bugs in CreateTableDecorator.php
tyrsson Aug 10, 2026
a8ab431
mago analyze: generate baseline for remaining tracked findings
tyrsson Aug 10, 2026
f1292f3
mago analyze: use @mago-expect for unused-parameter in Container fact…
tyrsson Aug 11, 2026
c8b197b
mago analyze: move @mago-expect into existing docblocks in Container …
tyrsson Aug 11, 2026
bd76204
adds php version, latest release and license to readme
tyrsson Aug 12, 2026
b36e74b
Correct package name in readme
tyrsson Aug 12, 2026
9432fe6
mago analyze: rename baseline to documented analysis-baseline.toml co…
tyrsson Aug 12, 2026
0a7439b
Merge pull request #60 from php-db/mago-analyze-fixes
tyrsson Aug 12, 2026
15ec17f
Merge pull request #58 from php-db/mago-lint-fixes
tyrsson Aug 12, 2026
c1957ab
working state
tyrsson Aug 12, 2026
99c97d4
Fixes test suite and allows mutation testing to run
tyrsson Aug 12, 2026
a18d648
Migrate phpunit.xml.dist to 12.5 schema
tyrsson Aug 12, 2026
863fad2
Bump infection to 0.34.2
tyrsson Aug 12, 2026
f2dfe78
Pin parenthese-around-new-in-member-access mago fmt
tyrsson Aug 12, 2026
2739df4
Pass 1
tyrsson Aug 12, 2026
ffa0890
Pass 2
tyrsson Aug 12, 2026
b99551e
Pass 3
tyrsson Aug 12, 2026
2751c3d
Pass 4
tyrsson Aug 12, 2026
e56ec04
Pass 5 refernces issue number 77
tyrsson Aug 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# mago format reformat commits go here, one SHA per line
50575fc32841622fb1cff85cb62a13b4eb8d5723
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/infection.json5
/infection.log
/summary.log
/mago-results.txt
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# PhpDb Adapter Mysql
# PhpDb Mysql

[![PHP Version](https://img.shields.io/packagist/php-v/php-db/phpdb-mysql)](https://packagist.org/packages/php-db/phpdb-mysql)
[![Continuous Integration](https://github.com/php-db/phpdb-mysql/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/php-db/phpdb-mysql/actions/workflows/continuous-integration.yml)
[![codecov](https://codecov.io/gh/php-db/phpdb-mysql/graph/badge.svg)](https://codecov.io/gh/php-db/phpdb-mysql)
[![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fphp-db%2Fphpdb-mysql%2F0.5.x)](https://dashboard.stryker-mutator.io/reports/github.com/php-db/phpdb-mysql/0.5.x)
[![Latest Stable Version](https://img.shields.io/packagist/v/php-db/phpdb-mysql)](https://packagist.org/packages/php-db/phpdb-mysql)
[![License](https://img.shields.io/github/license/php-db/phpdb-mysql)](LICENSE)

This package provides MySQL support for PhpDb.
Loading
Loading