Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 5... Línea 5...
5
namespace OpenSpout\Writer\XLSX;
5
namespace OpenSpout\Writer\XLSX;
Línea 6... Línea 6...
6
 
6
 
7
/**
7
/**
8
 * @internal
8
 * @internal
9
 */
9
 */
10
final class MergeCell
10
final readonly class MergeCell
11
{
11
{
12
    /**
12
    /**
13
     * @param 0|positive-int $sheetIndex
13
     * @param 0|positive-int $sheetIndex
14
     * @param 0|positive-int $topLeftColumn
14
     * @param 0|positive-int $topLeftColumn
15
     * @param positive-int   $topLeftRow
15
     * @param positive-int   $topLeftRow
16
     * @param 0|positive-int $bottomRightColumn
16
     * @param 0|positive-int $bottomRightColumn
17
     * @param positive-int   $bottomRightRow
17
     * @param positive-int   $bottomRightRow
18
     */
18
     */
19
    public function __construct(
19
    public function __construct(
20
        public readonly int $sheetIndex,
20
        public int $sheetIndex,
21
        public readonly int $topLeftColumn,
21
        public int $topLeftColumn,
22
        public readonly int $topLeftRow,
22
        public int $topLeftRow,
23
        public readonly int $bottomRightColumn,
23
        public int $bottomRightColumn,
24
        public readonly int $bottomRightRow,
24
        public int $bottomRightRow,
25
    ) {}
25
    ) {}