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\Statistical;

use PhpOffice\PhpSpreadsheet\Calculation\Calculation;

class FisherInvTest extends AllSetupTeardown
{
    /**
     * @dataProvider providerFISHERINV
     */
    public function testFISHERINV(mixed $expectedResult, mixed ...$args): void
    {
        $this->runTestCases('FISHERINV', $expectedResult, ...$args);
    }

    public static function providerFISHERINV(): array
    {
        return require 'tests/data/Calculation/Statistical/FISHERINV.php';
    }

    /**
     * @dataProvider providerFisherArray
     */
    public function testFisherArray(array $expectedResult, string $values): void
    {
        $calculation = Calculation::getInstance();

        $formula = "=FISHERINV({$values})";
        $result = $calculation->_calculateFormulaValue($formula);
        self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
    }

    public static function providerFisherArray(): array
    {
        return [
            'row vector' => [
                [[-0.7162978701990245, 0.197375320224904, 0.6351489523872873, 0.9051482536448664]],
                '{-0.9, 0.2, 0.75, 1.5}',
            ],
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Statistical;

use PhpOffice\PhpSpreadsheet\Calculation\Calculation;

class FisherInvTest extends AllSetupTeardown
{
    /**
     * @dataProvider providerFISHERINV
     */
    public function testFISHERINV(mixed $expectedResult, mixed ...$args): void
    {
        $this->runTestCases('FISHERINV', $expectedResult, ...$args);
    }

    public static function providerFISHERINV(): array
    {
        return require 'tests/data/Calculation/Statistical/FISHERINV.php';
    }

    /**
     * @dataProvider providerFisherArray
     */
    public function testFisherArray(array $expectedResult, string $values): void
    {
        $calculation = Calculation::getInstance();

        $formula = "=FISHERINV({$values})";
        $result = $calculation->_calculateFormulaValue($formula);
        self::assertEqualsWithDelta($expectedResult, $result, 1.0e-14);
    }

    public static function providerFisherArray(): array
    {
        return [
            'row vector' => [
                [[-0.7162978701990245, 0.197375320224904, 0.6351489523872873, 0.9051482536448664]],
                '{-0.9, 0.2, 0.75, 1.5}',
            ],
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 7c641ff046f1901631997d04817fcaa2
Eval Count 0
Decode Time 96 ms