@@ 99-104 (lines=6) @@ | ||
96 | $columns = $this->columns; |
|
97 | $rows = $this->rows; |
|
98 | ||
99 | if (!$columns->contains($column)) { |
|
100 | $columns = $columns->put( |
|
101 | $column, |
|
102 | new Column($column, new Map('scalar', CellInterface::class)) |
|
103 | ); |
|
104 | } |
|
105 | ||
106 | if (!$rows->contains($row)) { |
|
107 | $rows = $rows->put( |
|
@@ 106-111 (lines=6) @@ | ||
103 | ); |
|
104 | } |
|
105 | ||
106 | if (!$rows->contains($row)) { |
|
107 | $rows = $rows->put( |
|
108 | $row, |
|
109 | new Row($row, new Map('scalar', CellInterface::class)) |
|
110 | ); |
|
111 | } |
|
112 | ||
113 | $columns = $columns->put( |
|
114 | $column, |