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\Operator;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @covers \PhpCsFixer\Fixer\Operator\NoSpaceAroundDoubleColonFixer
*
* @internal
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Operator\NoSpaceAroundDoubleColonFixer>
*/
final class NoSpaceAroundDoubleColonFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, string $input): void
{
$this->doTest($expected, $input);
}
public static function provideFixCases(): iterable
{
yield [
'<?php echo self::$a;',
'<?php echo self :: $a;',
];
yield [
'<?php echo static::$a;',
'<?php echo static ::$a;',
];
yield [
'<?php
echo F\B::class;
echo A\B:: /**/ c;
echo C\B/**/::c;
',
'<?php
echo F\B:: class;
echo A\B :: /**/ c;
echo C\B/**/:: c;
',
];
yield [
'<?php
namespace {
class Foo { public const a = 1; }
echo Foo::a; // Fix
echo "\n".Place\Bar::$a."\n"; // Fix
}
namespace Somewhere\Over\The\Rainbow {
class Bar {
public static $a = "BAR-A:: ";
public function v(?string $z = "zzz"): void
{
echo "\n".self::$a.$z; // Fix
echo "\n".static::class; // Fix
echo "\n".static # do ...
:: # ... not ...
$a.$z; // ... fix
}
}
$bar = new Bar();
$bar->v();
}
# ; echo A :: B;
// ; echo A :: B;
/* ; echo A :: B; */
',
'<?php
namespace {
class Foo { public const a = 1; }
echo Foo:: a; // Fix
echo "\n".Place\Bar :: $a."\n"; // Fix
}
namespace Somewhere\Over\The\Rainbow {
class Bar {
public static $a = "BAR-A:: ";
public function v(?string $z = "zzz"): void
{
echo "\n".self :: $a.$z; // Fix
echo "\n".static :: class; // Fix
echo "\n".static # do ...
:: # ... not ...
$a.$z; // ... fix
}
}
$bar = new Bar();
$bar->v();
}
# ; echo A :: B;
// ; echo A :: B;
/* ; echo A :: B; */
',
];
}
}
?>
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\Operator;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @covers \PhpCsFixer\Fixer\Operator\NoSpaceAroundDoubleColonFixer
*
* @internal
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Operator\NoSpaceAroundDoubleColonFixer>
*/
final class NoSpaceAroundDoubleColonFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, string $input): void
{
$this->doTest($expected, $input);
}
public static function provideFixCases(): iterable
{
yield [
'<?php echo self::$a;',
'<?php echo self :: $a;',
];
yield [
'<?php echo static::$a;',
'<?php echo static ::$a;',
];
yield [
'<?php
echo F\B::class;
echo A\B:: /**/ c;
echo C\B/**/::c;
',
'<?php
echo F\B:: class;
echo A\B :: /**/ c;
echo C\B/**/:: c;
',
];
yield [
'<?php
namespace {
class Foo { public const a = 1; }
echo Foo::a; // Fix
echo "\n".Place\Bar::$a."\n"; // Fix
}
namespace Somewhere\Over\The\Rainbow {
class Bar {
public static $a = "BAR-A:: ";
public function v(?string $z = "zzz"): void
{
echo "\n".self::$a.$z; // Fix
echo "\n".static::class; // Fix
echo "\n".static # do ...
:: # ... not ...
$a.$z; // ... fix
}
}
$bar = new Bar();
$bar->v();
}
# ; echo A :: B;
// ; echo A :: B;
/* ; echo A :: B; */
',
'<?php
namespace {
class Foo { public const a = 1; }
echo Foo:: a; // Fix
echo "\n".Place\Bar :: $a."\n"; // Fix
}
namespace Somewhere\Over\The\Rainbow {
class Bar {
public static $a = "BAR-A:: ";
public function v(?string $z = "zzz"): void
{
echo "\n".self :: $a.$z; // Fix
echo "\n".static :: class; // Fix
echo "\n".static # do ...
:: # ... not ...
$a.$z; // ... fix
}
}
$bar = new Bar();
$bar->v();
}
# ; echo A :: B;
// ; echo A :: B;
/* ; echo A :: B; */
',
];
}
}
Function Calls
None |
Stats
MD5 | ad46dedd4e93b9c120f7aef0eb25f2bf |
Eval Count | 0 |
Decode Time | 99 ms |