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 Composer. * * (c) Nils Aderma..
Decoded Output download
<?php declare(strict_types=1);
/*
* This file is part of Composer.
*
* (c) Nils Adermann <[email protected]>
* Jordi Boggiano <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Test\Filter\PlatformRequirementFilter;
use Composer\Filter\PlatformRequirementFilter\IgnoreAllPlatformRequirementFilter;
use Composer\Test\TestCase;
final class IgnoreAllPlatformRequirementFilterTest extends TestCase
{
/**
* @dataProvider dataIsIgnored
*/
public function testIsIgnored(string $req, bool $expectIgnored): void
{
$platformRequirementFilter = new IgnoreAllPlatformRequirementFilter();
self::assertSame($expectIgnored, $platformRequirementFilter->isIgnored($req));
self::assertSame($expectIgnored, $platformRequirementFilter->isUpperBoundIgnored($req));
}
/**
* @return array<string, mixed[]>
*/
public static function dataIsIgnored(): array
{
return [
'php is ignored' => ['php', true],
'monolog/monolog is not ignored' => ['monolog/monolog', false],
];
}
}
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1);
/*
* This file is part of Composer.
*
* (c) Nils Adermann <[email protected]>
* Jordi Boggiano <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Test\Filter\PlatformRequirementFilter;
use Composer\Filter\PlatformRequirementFilter\IgnoreAllPlatformRequirementFilter;
use Composer\Test\TestCase;
final class IgnoreAllPlatformRequirementFilterTest extends TestCase
{
/**
* @dataProvider dataIsIgnored
*/
public function testIsIgnored(string $req, bool $expectIgnored): void
{
$platformRequirementFilter = new IgnoreAllPlatformRequirementFilter();
self::assertSame($expectIgnored, $platformRequirementFilter->isIgnored($req));
self::assertSame($expectIgnored, $platformRequirementFilter->isUpperBoundIgnored($req));
}
/**
* @return array<string, mixed[]>
*/
public static function dataIsIgnored(): array
{
return [
'php is ignored' => ['php', true],
'monolog/monolog is not ignored' => ['monolog/monolog', false],
];
}
}
Function Calls
None |
Stats
MD5 | eb48f39a55459c33fc40a374588fc02a |
Eval Count | 0 |
Decode Time | 143 ms |