From 081a7d0ff983da5516a8fa6ff369d4bf61cdb0da Mon Sep 17 00:00:00 2001 From: Clemens Date: Thu, 30 Jan 2025 00:23:21 +0100 Subject: [PATCH] MDL-83650 odslib: Add variable to class MoodleODSCell --- lib/odslib.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/odslib.class.php b/lib/odslib.class.php index 6228685a0b0..52ab06c7f12 100644 --- a/lib/odslib.class.php +++ b/lib/odslib.class.php @@ -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; }