Updated libraries.

This commit is contained in:
flash 2025-01-21 21:04:32 +00:00
parent cab5f480db
commit 9368523d6b
3 changed files with 8 additions and 8 deletions

View file

@ -1 +1 @@
0.2501.182241
0.2501.212104

10
composer.lock generated
View file

@ -944,16 +944,16 @@
},
{
"name": "phpstan/phpstan",
"version": "2.1.1",
"version": "2.1.2",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpstan.git",
"reference": "cd6e973e04b4c2b94c86e8612b5a65f0da0e08e7"
"reference": "7d08f569e582ade182a375c366cbd896eccadd3a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/cd6e973e04b4c2b94c86e8612b5a65f0da0e08e7",
"reference": "cd6e973e04b4c2b94c86e8612b5a65f0da0e08e7",
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/7d08f569e582ade182a375c366cbd896eccadd3a",
"reference": "7d08f569e582ade182a375c366cbd896eccadd3a",
"shasum": ""
},
"require": {
@ -998,7 +998,7 @@
"type": "github"
}
],
"time": "2025-01-05T16:43:48+00:00"
"time": "2025-01-21T14:54:06+00:00"
},
{
"name": "phpunit/php-code-coverage",

View file

@ -1,7 +1,7 @@
<?php
// MariaDbConnection.php
// Created: 2021-04-30
// Updated: 2025-01-18
// Updated: 2025-01-21
namespace Index\Db\MariaDb;
@ -92,7 +92,7 @@ class MariaDbConnection implements DbConnection {
$this->connection->autocommit(true);
}
public int|string $affectedRows {
public int|string $affectedRows { // @phpstan-ignore-line: false negative
get => $this->connection->affected_rows;
}