Update to PHP-CS-Fixer 2.10

This commit is contained in:
Adrien Crivelli
2018-01-28 15:59:38 +09:00
parent 015c83ccf4
commit c96e2dae02
92 changed files with 1159 additions and 1112 deletions
@@ -12,9 +12,9 @@ $spreadsheet = new Spreadsheet();
// Add some data, we will use some formulas here
$helper->log('Add some data and formulas');
$spreadsheet->getActiveSheet()->setCellValue('A1', '=B1')
->setCellValue('A2', '=B2+1')
->setCellValue('B1', '=A1+1')
->setCellValue('B2', '=A2');
->setCellValue('A2', '=B2+1')
->setCellValue('B1', '=A1+1')
->setCellValue('B2', '=A2');
Calculation::getInstance($spreadsheet)->cyclicFormulaCount = 100;