Fix PHPStan errors

This commit is contained in:
slawkens
2024-11-08 11:44:26 +01:00
parent b6e0184386
commit 88a0bc82d7
5 changed files with 13 additions and 5 deletions

View File

@@ -11,6 +11,6 @@ $up = function () use ($db) {
$db->modifyColumn(TABLE_PREFIX . 'visitors', 'ip', 'VARCHAR(15) NOT NULL');
};
$down = function () use ($db) {
$down = function () {
// nothing to be done, as we have just extended the size of a column
};