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\Casing;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @internal
*
* @covers \PhpCsFixer\Fixer\Casing\IntegerLiteralCaseFixer
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Casing\IntegerLiteralCaseFixer>
*/
final class IntegerLiteralCaseFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
public static function provideFixCases(): iterable
{
yield [
'<?php $foo1 = 0xFF; $foo2 = 0xDEFA; $foo3 = 0xFA; $foo4 = 0xFA;',
'<?php $foo1 = 0XFF; $foo2 = 0xdefa; $foo3 = 0Xfa; $foo4 = 0xFA;',
];
yield [
'<?php $foo = 0xA1FB20;',
'<?php $foo = 0xa1fb20;',
];
yield [
'<?php $foo = -0xA1FB20;',
'<?php $foo = -0xa1fb20;',
];
yield [
'<?php $foo = 0b1101;',
'<?php $foo = 0B1101;',
];
yield [
'<?php $A = 1_234_567;',
];
yield [
'<?php $A = +0xAA_FF_00;',
'<?php $A = +0Xaa_ff_00;',
];
yield [
'<?php $A = -0x00_AA_FF_00;',
'<?php $A = -0X00_aa_ff_00;',
];
yield 'bin_PHP_INT_MAX' => [
'<?php $foo = 0b111111111111111111111111111111111111111111111111111111111111111;',
'<?php $foo = 0B111111111111111111111111111111111111111111111111111111111111111;',
];
yield 'hex_plus_PHP_INT_MAX' => [
'<?php $foo = +0x7FFFFFFFFFFFFFFF;',
'<?php $foo = +0X7fffffffffffffff;',
];
yield 'hex_minus_PHP_INT_MAX' => [
'<?php $foo = -0x7FFFFFFFFFFFFFFF;',
'<?php $foo = -0X7fffffffffffffff;',
];
}
/**
* @dataProvider provideFix81Cases
*
* @requires PHP 8.1
*/
public function testFix81(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
public static function provideFix81Cases(): iterable
{
yield [
'<?php $foo = 0o123;',
'<?php $foo = 0O123;',
];
yield [
'<?php $foo = -0o123;',
'<?php $foo = -0O123;',
];
}
}
?>
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\Casing;
use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
/**
* @internal
*
* @covers \PhpCsFixer\Fixer\Casing\IntegerLiteralCaseFixer
*
* @extends AbstractFixerTestCase<\PhpCsFixer\Fixer\Casing\IntegerLiteralCaseFixer>
*/
final class IntegerLiteralCaseFixerTest extends AbstractFixerTestCase
{
/**
* @dataProvider provideFixCases
*/
public function testFix(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
public static function provideFixCases(): iterable
{
yield [
'<?php $foo1 = 0xFF; $foo2 = 0xDEFA; $foo3 = 0xFA; $foo4 = 0xFA;',
'<?php $foo1 = 0XFF; $foo2 = 0xdefa; $foo3 = 0Xfa; $foo4 = 0xFA;',
];
yield [
'<?php $foo = 0xA1FB20;',
'<?php $foo = 0xa1fb20;',
];
yield [
'<?php $foo = -0xA1FB20;',
'<?php $foo = -0xa1fb20;',
];
yield [
'<?php $foo = 0b1101;',
'<?php $foo = 0B1101;',
];
yield [
'<?php $A = 1_234_567;',
];
yield [
'<?php $A = +0xAA_FF_00;',
'<?php $A = +0Xaa_ff_00;',
];
yield [
'<?php $A = -0x00_AA_FF_00;',
'<?php $A = -0X00_aa_ff_00;',
];
yield 'bin_PHP_INT_MAX' => [
'<?php $foo = 0b111111111111111111111111111111111111111111111111111111111111111;',
'<?php $foo = 0B111111111111111111111111111111111111111111111111111111111111111;',
];
yield 'hex_plus_PHP_INT_MAX' => [
'<?php $foo = +0x7FFFFFFFFFFFFFFF;',
'<?php $foo = +0X7fffffffffffffff;',
];
yield 'hex_minus_PHP_INT_MAX' => [
'<?php $foo = -0x7FFFFFFFFFFFFFFF;',
'<?php $foo = -0X7fffffffffffffff;',
];
}
/**
* @dataProvider provideFix81Cases
*
* @requires PHP 8.1
*/
public function testFix81(string $expected, ?string $input = null): void
{
$this->doTest($expected, $input);
}
public static function provideFix81Cases(): iterable
{
yield [
'<?php $foo = 0o123;',
'<?php $foo = 0O123;',
];
yield [
'<?php $foo = -0o123;',
'<?php $foo = -0O123;',
];
}
}
Function Calls
None |
Stats
MD5 | 8ea56da67751316f0c7aa14a156d1c29 |
Eval Count | 0 |
Decode Time | 97 ms |