@@ -272,7 +272,7 @@ public function getColumns()
272
272
*
273
273
* @return int The column offset within the table range
274
274
*/
275
- public function testColumnInRange ($ column )
275
+ public function isColumnInRange ($ column )
276
276
{
277
277
if (empty ($ this ->range )) {
278
278
throw new PhpSpreadsheetException ('No table range is defined. ' );
@@ -296,7 +296,7 @@ public function testColumnInRange($column)
296
296
*/
297
297
public function getColumnOffset ($ column )
298
298
{
299
- return $ this ->testColumnInRange ($ column );
299
+ return $ this ->isColumnInRange ($ column );
300
300
}
301
301
302
302
/**
@@ -308,7 +308,7 @@ public function getColumnOffset($column)
308
308
*/
309
309
public function getColumn ($ column )
310
310
{
311
- $ this ->testColumnInRange ($ column );
311
+ $ this ->isColumnInRange ($ column );
312
312
313
313
if (!isset ($ this ->columns [$ column ])) {
314
314
$ this ->columns [$ column ] = new Table \Column ($ column , $ this );
@@ -349,7 +349,7 @@ public function setColumn($columnObjectOrString)
349
349
} else {
350
350
throw new PhpSpreadsheetException ('Column is not within the table range. ' );
351
351
}
352
- $ this ->testColumnInRange ($ column );
352
+ $ this ->isColumnInRange ($ column );
353
353
354
354
if (is_string ($ columnObjectOrString )) {
355
355
$ this ->columns [$ columnObjectOrString ] = new Table \Column ($ columnObjectOrString , $ this );
@@ -371,7 +371,7 @@ public function setColumn($columnObjectOrString)
371
371
*/
372
372
public function clearColumn ($ column )
373
373
{
374
- $ this ->testColumnInRange ($ column );
374
+ $ this ->isColumnInRange ($ column );
375
375
376
376
if (isset ($ this ->columns [$ column ])) {
377
377
unset($ this ->columns [$ column ]);
0 commit comments