Skip to content

Commit 129871c

Browse files
committed
PHP is complaining about non-existing BaseReader::listWorksheetInfo()`
But only on GitHub Actions, not in local... This makes zero sense at all ¯\_(ツ)_/¯
1 parent 619a6b4 commit 129871c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/PhpSpreadsheet/Reader/Gnumeric.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,8 @@ public function listWorksheetNames(string $filename): array
129129

130130
/**
131131
* Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns).
132-
*
133-
* @param string $filename
134132
*/
135-
public function listWorksheetInfo($filename): array
133+
public function listWorksheetInfo(string $filename): array
136134
{
137135
File::assertFile($filename);
138136
if (!$this->canRead($filename)) {

src/PhpSpreadsheet/Reader/Xml.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,8 @@ public function listWorksheetNames(string $filename): array
156156

157157
/**
158158
* Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns).
159-
*
160-
* @param string $filename
161159
*/
162-
public function listWorksheetInfo($filename): array
160+
public function listWorksheetInfo(string $filename): array
163161
{
164162
File::assertFile($filename);
165163
if (!$this->canRead($filename)) {

0 commit comments

Comments
 (0)