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\Tokens;
/**
* @author Dariusz Rumiski <[email protected]>
*
* @internal
*
* @covers \PhpCsFixer\Tokenizer\Transformer\WhitespacyCommentTransformer
*/
final class WhitespacyCommentTransformerTest extends AbstractTransformerTestCase
{
/**
* @param array<int, array{int, string}> $expectedTokens
*
* @dataProvider provideProcessCases
*/
public function testProcess(string $source, array $expectedTokens): void
{
$tokens = Tokens::fromCode($source);
foreach ($expectedTokens as $index => $expectedToken) {
$token = $tokens[$index];
self::assertSame($expectedToken[1], $token->getContent());
self::assertSame($expectedToken[0], $token->getId());
}
}
/**
* @return iterable<array{string, array<int, array{int, string}>}>
*/
public static function provideProcessCases(): iterable
{
yield [
"<?php // foo
\$a = 1;",
[
1 => [T_COMMENT, '// foo'],
2 => [T_WHITESPACE, "
"],
],
];
yield [
"<?php // foo
",
[
1 => [T_COMMENT, '// foo'],
2 => [T_WHITESPACE, "
"],
],
];
yield [
"<?php // foo
",
[
1 => [T_COMMENT, '// foo'],
2 => [T_WHITESPACE, "
"],
],
];
yield [
'<?php /* foo1 */// foo2 ',
[
1 => [T_COMMENT, '/* foo1 */'],
2 => [T_COMMENT, '// foo2'],
],
];
}
}
?>
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\Tokens;
/**
* @author Dariusz Rumiski <[email protected]>
*
* @internal
*
* @covers \PhpCsFixer\Tokenizer\Transformer\WhitespacyCommentTransformer
*/
final class WhitespacyCommentTransformerTest extends AbstractTransformerTestCase
{
/**
* @param array<int, array{int, string}> $expectedTokens
*
* @dataProvider provideProcessCases
*/
public function testProcess(string $source, array $expectedTokens): void
{
$tokens = Tokens::fromCode($source);
foreach ($expectedTokens as $index => $expectedToken) {
$token = $tokens[$index];
self::assertSame($expectedToken[1], $token->getContent());
self::assertSame($expectedToken[0], $token->getId());
}
}
/**
* @return iterable<array{string, array<int, array{int, string}>}>
*/
public static function provideProcessCases(): iterable
{
yield [
"<?php // foo\n \$a = 1;",
[
1 => [T_COMMENT, '// foo'],
2 => [T_WHITESPACE, "\n "],
],
];
yield [
"<?php // foo\n\n ",
[
1 => [T_COMMENT, '// foo'],
2 => [T_WHITESPACE, "\n\n "],
],
];
yield [
"<?php // foo \r\n ",
[
1 => [T_COMMENT, '// foo'],
2 => [T_WHITESPACE, " \r\n "],
],
];
yield [
'<?php /* foo1 */// foo2 ',
[
1 => [T_COMMENT, '/* foo1 */'],
2 => [T_COMMENT, '// foo2'],
],
];
}
}
Function Calls
None |
Stats
MD5 | 6efd010bd05ee1bd609356f9fbb67523 |
Eval Count | 0 |
Decode Time | 115 ms |