Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
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
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
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