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 MultinomialTest extends AllSetupTeardown
{
    /**
     * @dataProvider providerMULTINOMIAL
     */
    public function testMULTINOMIAL(mixed $expectedResult, mixed ...$args): void
    {
        $this->mightHaveException($expectedResult);
        $sheet = $this->getSheet();
        $row = 0;
        $excelArg = '';
        foreach ($args as $arg) {
            ++$row;
            $excelArg = "A1:A$row";
            if ($arg !== null) {
                $sheet->getCell("A$row")->setValue($arg);
            }
        }
        $sheet->getCell('B1')->setValue("=MULTINOMIAL($excelArg)");
        $result = $sheet->getCell('B1')->getCalculatedValue();
        self::assertEqualsWithDelta($expectedResult, $result, 1E-12);
    }

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

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\MathTrig;

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

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

Function Calls

None

Variables

None

Stats

MD5 40b55854eb53c8d9afd9f23a70476b2b
Eval Count 0
Decode Time 80 ms