Skip to content

Commit 4db8203

Browse files
committed
Remove table by name cs fix
1 parent feffb76 commit 4db8203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpSpreadsheet/Worksheet/Worksheet.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,7 @@ public function addTableByColumnAndRow($columnIndex1, $row1, $columnIndex2, $row
20662066
*/
20672067
public function removeTableByName(string $name): self
20682068
{
2069-
foreach($this->tableCollection as $key => $table) {
2069+
foreach ($this->tableCollection as $key => $table) {
20702070
if ($table->getName() === $name) {
20712071
unset($this->tableCollection[$key]);
20722072
}

0 commit comments

Comments
 (0)