Skip to content

Commit 906bf77

Browse files
committed
Remove unused parameters
This is a mistake on my part. I committed this without checking. Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
1 parent e29fe59 commit 906bf77

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

src/Sql.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,14 +1106,12 @@ private function getHtmlForSqlQueryResultsTable(
11061106
if ($statementInfo->isProcedure) {
11071107
return $this->getHtmlForStoredProcedureResults(
11081108
$result,
1109-
$numRows,
11101109
$displayResultsObject,
11111110
$statementInfo,
11121111
$showTable,
11131112
$printView,
11141113
$editable,
11151114
$isBrowseDistinct,
1116-
$displayParts,
11171115
$isLimitedDisplay,
11181116
);
11191117
}
@@ -1141,20 +1139,15 @@ private function getHtmlForSqlQueryResultsTable(
11411139
return $displayResultsObject->getTable($result, $displayParts, $statementInfo, $isLimitedDisplay);
11421140
}
11431141

1144-
/**
1145-
* @param mixed[]|null $showTable table definitions
1146-
* @psalm-param int|numeric-string $numRows
1147-
*/
1142+
/** @param mixed[]|null $showTable table definitions */
11481143
private function getHtmlForStoredProcedureResults(
11491144
ResultInterface $result,
1150-
int|string $numRows,
11511145
DisplayResults $displayResultsObject,
11521146
StatementInfo $statementInfo,
11531147
array|null $showTable,
11541148
bool $printView,
11551149
bool $editable,
11561150
bool $isBrowseDistinct,
1157-
DisplayParts $displayParts,
11581151
bool $isLimitedDisplay,
11591152
): string {
11601153
$tableHtml = '';

0 commit comments

Comments
 (0)