@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare (strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | use PhpOffice\PhpSpreadsheet\Calculation\Calculation; |
4 | 4 | use PhpOffice\PhpSpreadsheet\IOFactory; |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | public function sampleDataProvider(): array |
11 | 11 | { |
12 | 12 | return [ |
13 | - ['AL6 0JB', TRUE, [15,16,22]], |
|
13 | + ['AL6 0JB', TRUE, [15, 16, 22]], |
|
14 | 14 | ]; |
15 | 15 | } |
16 | 16 | |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $spreadsheet->setActiveSheetIndexByName('Sheet2'); |
35 | 35 | $this->assertEquals([$spreadsheet->getActiveSheet()->getCell('K11')->getCalculatedValue(), |
36 | 36 | $spreadsheet->getActiveSheet()->getCell('K12')->getCalculatedValue(), |
37 | - $spreadsheet->getActiveSheet()->getCell('K13')->getCalculatedValue()], [15,16,22]); |
|
37 | + $spreadsheet->getActiveSheet()->getCell('K13')->getCalculatedValue()], [15, 16, 22]); |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | $spreadsheet->setActiveSheetIndexByName('Sheet2'); |
57 | 57 | $this->assertEquals([$spreadsheet->getActiveSheet()->getCell('K11')->getCalculatedValue(), |
58 | 58 | $spreadsheet->getActiveSheet()->getCell('K12')->getCalculatedValue(), |
59 | - $spreadsheet->getActiveSheet()->getCell('K13')->getCalculatedValue()], [15,16,22]); |
|
59 | + $spreadsheet->getActiveSheet()->getCell('K13')->getCalculatedValue()], [15, 16, 22]); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | } |