Failed Conditions
Pull Request — master (#3876)
by Abdul Malik
22:45 queued 13:31
created

tests/data/CellRangeBoundaries.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
return [
6
    'Cell Range' => [
7
        [
8
            [2, 4],
9
            [5, 9],
10
        ],
11
        'B4:E9',
12
    ],
13
    'Single Cell' => [
14
        [
15
            [2, 4],
16
            [2, 4],
17
        ],
18
        'B4',
19
    ],
20
    'Column Range' => [
21
        [
22
            [2, 1],
23
            [3, 1_048_576],
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting ',' or ']' on line 23 at column 17
Loading history...
24
        ],
25
        'B:C',
26
    ],
27
    'Single Column Range' => [
28
        [
29
            [2, 1],
30
            [2, 1_048_576],
31
        ],
32
        'B:B',
33
    ],
34
    'Row Range' => [
35
        [
36
            [1, 2],
37
            [16384, 3],
38
        ],
39
        '2:3',
40
    ],
41
    'Single Row Range' => [
42
        [
43
            [1, 2],
44
            [16384, 2],
45
        ],
46
        '2:2',
47
    ],
48
];
49