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 Twig. * * (c) Fabien Potencier * * For the full copy..

Decoded Output download

<?php

/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Twig\Extra\Cache\Tests;

use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Twig\Extra\Cache\CacheExtension;
use Twig\Extra\Cache\CacheRuntime;
use Twig\RuntimeLoader\RuntimeLoaderInterface;
use Twig\Test\IntegrationTestCase;

class IntegrationTest extends IntegrationTestCase
{
    public function getExtensions()
    {
        return [
            new CacheExtension(),
        ];
    }

    protected function getRuntimeLoaders()
    {
        return [
            new class() implements RuntimeLoaderInterface {
                public function load($class)
                {
                    if (CacheRuntime::class === $class) {
                        return new CacheRuntime(new ArrayAdapter());
                    }
                }
            },
        ];
    }

    public function getFixturesDir()
    {
        return __DIR__.'/Fixtures/';
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

/*
 * This file is part of Twig.
 *
 * (c) Fabien Potencier
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Twig\Extra\Cache\Tests;

use Symfony\Component\Cache\Adapter\ArrayAdapter;
use Twig\Extra\Cache\CacheExtension;
use Twig\Extra\Cache\CacheRuntime;
use Twig\RuntimeLoader\RuntimeLoaderInterface;
use Twig\Test\IntegrationTestCase;

class IntegrationTest extends IntegrationTestCase
{
    public function getExtensions()
    {
        return [
            new CacheExtension(),
        ];
    }

    protected function getRuntimeLoaders()
    {
        return [
            new class() implements RuntimeLoaderInterface {
                public function load($class)
                {
                    if (CacheRuntime::class === $class) {
                        return new CacheRuntime(new ArrayAdapter());
                    }
                }
            },
        ];
    }

    public function getFixturesDir()
    {
        return __DIR__.'/Fixtures/';
    }
}

Function Calls

None

Variables

None

Stats

MD5 17249948606babbd7e6c8a6ef8f137f4
Eval Count 0
Decode Time 92 ms