We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf7f4b5 commit 75db32dCopy full SHA for 75db32d
1 file changed
src/Schema.php
@@ -658,21 +658,4 @@ protected function getCacheTag(): string
658
{
659
return md5(serialize(array_merge([self::class], $this->db->getCacheKey())));
660
}
661
-
662
- /**
663
- * Changes row's array key case to lower.
664
- *
665
- * @param array $row row's array or an array of row's arrays.
666
- * @param bool $multiple whether multiple rows or a single row passed.
667
668
- * @return array normalized row or rows.
669
- */
670
- protected function normalizeRowKeyCase(array $row, bool $multiple): array
671
- {
672
- if ($multiple) {
673
- return array_map(static fn (array $row) => array_change_key_case($row, CASE_LOWER), $row);
674
- }
675
676
- return array_change_key_case($row, CASE_LOWER);
677
678
0 commit comments