Files
oleibman ecbd702628 Phpstan and Samples
Phpstan hasn't identified any errors in Samples in a long time. But, as it turns out, one particular error is suppressed:
```
Variable $helper might not be defined.
```
This error would be generated by almost all samples, and the errors that it suppresses will become problematic if we move to Level 10. We are not yet committed to doing that, but it is pretty easy to write a script to change the samples so that error no longer happens, and there isn't really any reason to delay doing so. The results of that script constitute this PR.
2025-04-05 13:54:20 -07:00

71 lines
2.0 KiB
PHP

<?php
use PhpOffice\PhpSpreadsheet\Spreadsheet;
require __DIR__ . '/../Header.php';
/** @var PhpOffice\PhpSpreadsheet\Helper\Sample $helper */
$category = 'Engineering';
$functionName = 'ERF';
$description = 'Returns the error function integrated between lower_limit and upper_limit';
$helper->titles($category, $functionName, $description);
// Create new PhpSpreadsheet object
$spreadsheet = new Spreadsheet();
$worksheet = $spreadsheet->getActiveSheet();
// Add some data
$testData1 = [
[0.745],
[1],
[1.5],
[-2],
];
$testData2 = [
[0, 1.5],
[1, 2],
[-2, 1],
];
$testDataCount1 = count($testData1);
$testDataCount2 = count($testData2);
$testData2StartRow = $testDataCount1 + 1;
$worksheet->fromArray($testData1, null, 'A1', true);
$worksheet->fromArray($testData2, null, "A{$testData2StartRow}", true);
for ($row = 1; $row <= $testDataCount1; ++$row) {
$worksheet->setCellValue('C' . $row, '=ERF(A' . $row . ')');
}
for ($row = $testDataCount1 + 1; $row <= $testDataCount2 + $testDataCount1; ++$row) {
$worksheet->setCellValue('C' . $row, '=ERF(A' . $row . ', B' . $row . ')');
}
// Test the formulae
$helper->log('ERF() With a single argument');
for ($row = 1; $row <= $testDataCount1; ++$row) {
$helper->log(
"(C$row): "
. $worksheet->getCell('C' . $row)->getValueString()
. ' The error function integrated between 0 and '
. $worksheet->getCell('A' . $row)->getValueString()
. ' is '
. $worksheet->getCell('C' . $row)->getCalculatedValueString()
);
}
$helper->log('ERF() With two arguments');
for ($row = $testDataCount1 + 1; $row <= $testDataCount2 + $testDataCount1; ++$row) {
$helper->log(
"(C$row): "
. $worksheet->getCell('C' . $row)->getValueString()
. ' The error function integrated between '
. $worksheet->getCell('A' . $row)->getValueString()
. ' and '
. $worksheet->getCell('B' . $row)->getValueString()
. ' is '
. $worksheet->getCell('C' . $row)->getCalculatedValueString()
);
}