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 89e6184 commit 2ff36d9Copy full SHA for 2ff36d9
1 file changed
src/Display/Results.php
@@ -153,9 +153,9 @@ class Results
153
* transformation_options?: string,
154
* input_transformation?: string,
155
* input_transformation_options?: string
156
- * }>
+ * }>|null
157
*/
158
- private array $mediaTypeMap = [];
+ private array|null $mediaTypeMap = null;
159
160
/**
161
* where clauses for each row, each table in the row
@@ -1868,7 +1868,7 @@ private function getTableBody(
1868
}
1869
1870
// 2. Displays the rows' values
1871
- if ($this->mediaTypeMap === []) {
+ if ($this->mediaTypeMap === null) {
1872
$this->setMimeMap();
1873
1874
0 commit comments