@@ -125,7 +125,7 @@ the Excel file:
125125``` php
126126class MyReadFilter implements \PhpOffice\PhpSpreadsheet\Reader\IReadFilter {
127127
128- public function readCell($column , $row, $worksheetName = '') {
128+ public function readCell($columnAddress , $row, $worksheetName = '') {
129129 // Read title row and rows 20 - 30
130130 if ($row == 1 || ($row >= 20 && $row <= 30)) {
131131 return true;
@@ -242,7 +242,7 @@ in the Excel file:
242242``` php
243243class MyReadFilter implements \PhpOffice\PhpSpreadsheet\Reader\IReadFilter {
244244
245- public function readCell($column , $row, $worksheetName = '') {
245+ public function readCell($columnAddress , $row, $worksheetName = '') {
246246 // Read title row and rows 20 - 30
247247 if ($row == 1 || ($row >= 20 && $row <= 30)) {
248248 return true;
@@ -301,7 +301,7 @@ in the Excel file:
301301``` php
302302class MyReadFilter implements \PhpOffice\PhpSpreadsheet\Reader\IReadFilter {
303303
304- public function readCell($column , $row, $worksheetName = '') {
304+ public function readCell($columnAddress , $row, $worksheetName = '') {
305305 // Read title row and rows 20 - 30
306306 if ($row == 1 || ($row >= 20 && $row <= 30)) {
307307 return true;
@@ -352,7 +352,7 @@ in the SYLK file:
352352``` php
353353class MyReadFilter implements \PhpOffice\PhpSpreadsheet\Reader\IReadFilter {
354354
355- public function readCell($column , $row, $worksheetName = '') {
355+ public function readCell($columnAddress , $row, $worksheetName = '') {
356356 // Read title row and rows 20 - 30
357357 if ($row == 1 || ($row >= 20 && $row <= 30)) {
358358 return true;
@@ -397,7 +397,7 @@ in the Calc file:
397397``` php
398398class MyReadFilter implements \PhpOffice\PhpSpreadsheet\Reader\IReadFilter {
399399
400- public function readCell($column , $row, $worksheetName = '') {
400+ public function readCell($columnAddress , $row, $worksheetName = '') {
401401 // Read title row and rows 20 - 30
402402 if ($row == 1 || ($row >= 20 && $row <= 30)) {
403403 return true;
0 commit comments