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 /** * @package Grav\Framework\Cache * * @copyright Copyright (c) 2015 - 2024..
Decoded Output download
<?php
/**
* @package Grav\Framework\Cache
*
* @copyright Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Framework\Cache;
use DateInterval;
use Psr\SimpleCache\InvalidArgumentException;
/**
* Cache trait for PSR-16 compatible "Simple Cache" implementation
* @package Grav\Framework\Cache
*/
abstract class AbstractCache implements CacheInterface
{
use CacheTrait;
/**
* @param string $namespace
* @param null|int|DateInterval $defaultLifetime
* @throws InvalidArgumentException
*/
public function __construct($namespace = '', $defaultLifetime = null)
{
$this->init($namespace, $defaultLifetime);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* @package Grav\Framework\Cache
*
* @copyright Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Framework\Cache;
use DateInterval;
use Psr\SimpleCache\InvalidArgumentException;
/**
* Cache trait for PSR-16 compatible "Simple Cache" implementation
* @package Grav\Framework\Cache
*/
abstract class AbstractCache implements CacheInterface
{
use CacheTrait;
/**
* @param string $namespace
* @param null|int|DateInterval $defaultLifetime
* @throws InvalidArgumentException
*/
public function __construct($namespace = '', $defaultLifetime = null)
{
$this->init($namespace, $defaultLifetime);
}
}
Function Calls
None |
Stats
MD5 | 76174fe16bb99e49e695cfa48eaa46d2 |
Eval Count | 0 |
Decode Time | 117 ms |