MDL-83650 odslib: Add variable to class MoodleODSCell

This commit is contained in:
Clemens 2025-01-30 00:23:21 +01:00
parent bcf06a0484
commit 081a7d0ff9

View File

@ -104,6 +104,12 @@ class MoodleODSCell {
public $type;
public $format;
public $formula;
/**
* @var array Contains the number of rows and columns spanned by the merged cell.
* 'rows' => integer, the number of rows the cell spans.
* 'columns' => integer, the number of columns the cell spans.
*/
public $merge;
}