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); /* * This file is part of PHP CS Fixer. * * (c) Fabien..

Decoded Output download

<?php

declare(strict_types=1);

/*
 * This file is part of PHP CS Fixer.
 *
 * (c) Fabien Potencier <[email protected]>
 *     Dariusz Rumiski <[email protected]>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

namespace PhpCsFixer\Tests\Fixer\CastNotation;

use PhpCsFixer\Tests\Test\AbstractFixerTestCase;

/**
 * @internal
 *
 * @covers \PhpCsFixer\Fixer\CastNotation\NoUnsetCastFixer
 *
 * @requires PHP <8.0
 *
 * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\CastNotation\NoUnsetCastFixer>
 */
final class NoUnsetCastFixerTest extends AbstractFixerTestCase
{
    /**
     * @dataProvider provideFixCases
     */
    public function testFix(string $expected, ?string $input = null): void
    {
        $this->doTest($expected, $input);
    }

    public static function provideFixCases(): iterable
    {
        yield 'simple form I' => [
            "<?php\n\$a = null;",
            "<?php\n\$a =(unset)\$z;",
        ];

        yield 'simple form II' => [
            "<?php\n\$b = null;",
            "<?php\n\$b = (unset)\$z;",
        ];

        yield 'simple form III' => [
            "<?php\n\$c = null?>",
            "<?php\n\$c = (unset)\$z?>",
        ];

        yield 'lot of spaces' => [
            "<?php\n\$d = \t \t \t null;",
            "<?php\n\$d = \t (unset)\$z\t \t ;",
        ];

        yield 'comments' => [
            '<?php
#0
$a#1
#2
= null#3
#4
#5
#6
#7
#8
;
',
            '<?php
#0
$a#1
#2
=#3
#4
(unset)#5
#6
$b#7
#8
;
',
        ];

        yield [
            "<?php\n(unset) \$b;",
        ];

        yield [
            '<?php $r = (unset) f(1);',
        ];

        yield [
            '<?php $r = (unset) (new C())->mf(3);',
        ];

        yield [
            '<?php $r = (unset) $f(1);',
        ];

        yield [
            '<?php $r = (unset) $c::sf(2) ?>',
        ];

        yield [
            '<?php $r = (unset) $a[0];',
        ];

        yield [
            '<?php $r = (unset) $n**f($n);',
        ];
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

/*
 * This file is part of PHP CS Fixer.
 *
 * (c) Fabien Potencier <[email protected]>
 *     Dariusz Rumiski <[email protected]>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

namespace PhpCsFixer\Tests\Fixer\CastNotation;

use PhpCsFixer\Tests\Test\AbstractFixerTestCase;

/**
 * @internal
 *
 * @covers \PhpCsFixer\Fixer\CastNotation\NoUnsetCastFixer
 *
 * @requires PHP <8.0
 *
 * @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\CastNotation\NoUnsetCastFixer>
 */
final class NoUnsetCastFixerTest extends AbstractFixerTestCase
{
    /**
     * @dataProvider provideFixCases
     */
    public function testFix(string $expected, ?string $input = null): void
    {
        $this->doTest($expected, $input);
    }

    public static function provideFixCases(): iterable
    {
        yield 'simple form I' => [
            "<?php\n\$a = null;",
            "<?php\n\$a =(unset)\$z;",
        ];

        yield 'simple form II' => [
            "<?php\n\$b = null;",
            "<?php\n\$b = (unset)\$z;",
        ];

        yield 'simple form III' => [
            "<?php\n\$c = null?>",
            "<?php\n\$c = (unset)\$z?>",
        ];

        yield 'lot of spaces' => [
            "<?php\n\$d = \t \t \t null;",
            "<?php\n\$d = \t (unset)\$z\t \t ;",
        ];

        yield 'comments' => [
            '<?php
#0
$a#1
#2
= null#3
#4
#5
#6
#7
#8
;
',
            '<?php
#0
$a#1
#2
=#3
#4
(unset)#5
#6
$b#7
#8
;
',
        ];

        yield [
            "<?php\n(unset) \$b;",
        ];

        yield [
            '<?php $r = (unset) f(1);',
        ];

        yield [
            '<?php $r = (unset) (new C())->mf(3);',
        ];

        yield [
            '<?php $r = (unset) $f(1);',
        ];

        yield [
            '<?php $r = (unset) $c::sf(2) ?>',
        ];

        yield [
            '<?php $r = (unset) $a[0];',
        ];

        yield [
            '<?php $r = (unset) $n**f($n);',
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 0ff79a34bd2d2800e3324b8faa9a4fb1
Eval Count 0
Decode Time 98 ms