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 /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Semaphore\Tests\Store;
/**
* @author Jrmy Deruss <[email protected]>
*
* @requires extension redis
*/
class RedisArrayStoreTest extends AbstractRedisStoreTestCase
{
public static function setUpBeforeClass(): void
{
if (!class_exists(\RedisArray::class)) {
self::markTestSkipped('The RedisArray class is required.');
}
try {
(new \Redis())->connect(...explode(':', getenv('REDIS_HOST')));
} catch (\Exception $e) {
self::markTestSkipped($e->getMessage());
}
}
protected function getRedisConnection(): \RedisArray
{
return new \RedisArray([getenv('REDIS_HOST')]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Semaphore\Tests\Store;
/**
* @author Jrmy Deruss <[email protected]>
*
* @requires extension redis
*/
class RedisArrayStoreTest extends AbstractRedisStoreTestCase
{
public static function setUpBeforeClass(): void
{
if (!class_exists(\RedisArray::class)) {
self::markTestSkipped('The RedisArray class is required.');
}
try {
(new \Redis())->connect(...explode(':', getenv('REDIS_HOST')));
} catch (\Exception $e) {
self::markTestSkipped($e->getMessage());
}
}
protected function getRedisConnection(): \RedisArray
{
return new \RedisArray([getenv('REDIS_HOST')]);
}
}
Function Calls
None |
Stats
MD5 | b6817dee4c737652e779ad720bc97634 |
Eval Count | 0 |
Decode Time | 101 ms |