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\Tokenizer\Transformer;
use PhpCsFixer\Tests\Test\AbstractTransformerTestCase;
use PhpCsFixer\Tokenizer\CT;
/**
* @author Dariusz Rumiski <[email protected]>
*
* @internal
*
* @covers \PhpCsFixer\Tokenizer\Transformer\ClassConstantTransformer
*/
final class ClassConstantTransformerTest extends AbstractTransformerTestCase
{
/**
* @param array<int, int> $expectedTokens
*
* @dataProvider provideProcessCases
*/
public function testProcess(string $source, array $expectedTokens = []): void
{
$this->doTest(
$source,
$expectedTokens,
[
CT::T_CLASS_CONSTANT,
]
);
}
public static function provideProcessCases(): iterable
{
yield [
'<?php echo X::class;',
[
5 => CT::T_CLASS_CONSTANT,
],
];
yield [
'<?php echo X::cLaSS;',
[
5 => CT::T_CLASS_CONSTANT,
],
];
yield [
'<?php echo X::bar;',
];
yield [
'<?php class X{}',
];
}
}
?>
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\Tokenizer\Transformer;
use PhpCsFixer\Tests\Test\AbstractTransformerTestCase;
use PhpCsFixer\Tokenizer\CT;
/**
* @author Dariusz Rumiski <[email protected]>
*
* @internal
*
* @covers \PhpCsFixer\Tokenizer\Transformer\ClassConstantTransformer
*/
final class ClassConstantTransformerTest extends AbstractTransformerTestCase
{
/**
* @param array<int, int> $expectedTokens
*
* @dataProvider provideProcessCases
*/
public function testProcess(string $source, array $expectedTokens = []): void
{
$this->doTest(
$source,
$expectedTokens,
[
CT::T_CLASS_CONSTANT,
]
);
}
public static function provideProcessCases(): iterable
{
yield [
'<?php echo X::class;',
[
5 => CT::T_CLASS_CONSTANT,
],
];
yield [
'<?php echo X::cLaSS;',
[
5 => CT::T_CLASS_CONSTANT,
],
];
yield [
'<?php echo X::bar;',
];
yield [
'<?php class X{}',
];
}
}
Function Calls
None |
Stats
MD5 | 6e51596da773f216f86b0e61db4d61a2 |
Eval Count | 0 |
Decode Time | 106 ms |