Skip to content

Commit 01edca8

Browse files
committed
fix: conflict fixed.
1 parent 7727d15 commit 01edca8

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

phpstan-baseline.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2677,12 +2677,6 @@
26772677
'count' => 1,
26782678
'path' => __DIR__ . '/system/Database/Forge.php',
26792679
];
2680-
$ignoreErrors[] = [
2681-
// identifier: missingType.iterableValue
2682-
'message' => '#^Method CodeIgniter\\\\Database\\\\Forge\\:\\:dropColumn\\(\\) has parameter \\$columnNames with no value type specified in iterable type array\\.$#',
2683-
'count' => 1,
2684-
'path' => __DIR__ . '/system/Database/Forge.php',
2685-
];
26862680
$ignoreErrors[] = [
26872681
// identifier: missingType.iterableValue
26882682
'message' => '#^Method CodeIgniter\\\\Database\\\\Forge\\:\\:modifyColumn\\(\\) has parameter \\$fields with no value type specified in iterable type array\\.$#',

system/Database/Forge.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ public function addColumn(string $table, $fields): bool
778778
}
779779

780780
/**
781-
* @param array|string $columnNames column names to DROP
781+
* @param list<string>|string $columnNames column names to DROP
782782
*
783783
* @return bool
784784
*

system/Database/SQLite3/Forge.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ protected function _alterTable(string $alterType, string $table, $processedField
154154
}
155155

156156
/**
157-
* @param array|string $columnNames column names to DROP
157+
* @param list<string>|string $columnNames column names to DROP
158158
*
159159
* @return bool
160160
*

writable/test_com.sitedb.web

Whitespace-only changes.

0 commit comments

Comments
 (0)