Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php declare(strict_types=1); namespace PhpOffice\PhpSpreadsheetTests\Calculation\Funct..

Decoded Output download

<?php

declare(strict_types=1);

namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;

class SumSqTest extends AllSetupTeardown
{
    /**
     * @dataProvider providerSUMSQ
     */
    public function testSUMSQ(mixed $expectedResult, mixed ...$args): void
    {
        $this->mightHaveException($expectedResult);
        $maxRow = 0;
        $funcArg = '';
        $sheet = $this->getSheet();
        foreach ($args as $arg) {
            ++$maxRow;
            $funcArg = "A1:A$maxRow";
            if ($arg !== null) {
                $sheet->getCell("A$maxRow")->setValue($arg);
            }
        }
        $sheet->getCell('B1')->setValue("=SUMSQ($funcArg)");
        $result = $sheet->getCell('B1')->getCalculatedValue();
        self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
    }

    public static function providerSUMSQ(): array
    {
        return require 'tests/data/Calculation/MathTrig/SUMSQ.php';
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;

class SumSqTest extends AllSetupTeardown
{
    /**
     * @dataProvider providerSUMSQ
     */
    public function testSUMSQ(mixed $expectedResult, mixed ...$args): void
    {
        $this->mightHaveException($expectedResult);
        $maxRow = 0;
        $funcArg = '';
        $sheet = $this->getSheet();
        foreach ($args as $arg) {
            ++$maxRow;
            $funcArg = "A1:A$maxRow";
            if ($arg !== null) {
                $sheet->getCell("A$maxRow")->setValue($arg);
            }
        }
        $sheet->getCell('B1')->setValue("=SUMSQ($funcArg)");
        $result = $sheet->getCell('B1')->getCalculatedValue();
        self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
    }

    public static function providerSUMSQ(): array
    {
        return require 'tests/data/Calculation/MathTrig/SUMSQ.php';
    }
}

Function Calls

None

Variables

None

Stats

MD5 02b0e624442318525179f634651fcc4a
Eval Count 0
Decode Time 83 ms