* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Adapter; use Symfony\Component\Cache\Exception\CacheException; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Cache\Traits\PhpFilesTrait; class PhpFilesAdapter extends AbstractAdapter implements PruneableInterface { use PhpFilesTrait; /** * @param string $namespace * @param int $defaultLifetime * @param string|null $directory * * @throws CacheException if OPcache is not enabled */ public function __construct($namespace = '', $defaultLifetime = 0, $directory = null) { if (!static::isSupported()) { throw new CacheException('OPcache is not enabled'); } parent::__construct('', $defaultLifetime); $this->init($namespace, $directory); $e = new \Exception(); $this->includeHandler = function () use ($e) { throw $e; }; $this->zendDetectUnicode = ini_get('zend.detect_unicode'); } } __halt_compiler();----SIGNATURE:----ddN/n57DJ9e0afJP54L6YMieq5E+tVRKB0XbGBZhAv7VZpoWHkody7O5dzaTjEYPmm73eh0mcoCjEf50EwC3s/Anyu6kGxLBPYtqfR1VE4JeA/PbdAFl9oOsIhCkzeiPB2wRHpK3D+whUnKrdne0u9NujdKJKicvauvB8tREJjLOgGfuMqJgyqLCMduRWCjyzEDuANfeUv2SW5wXNcohvjvx0EnEAFK7ZbQuZt3E+xcpZTzoL/uElp0KsgqNu6EN/XbD9Thmd41s7pxjTRSH5sjRlI5i0K7+iZlJSoKtsNVVx50HIiDgTvtkGLOWtQSTcbtx7PJwEKNxS9Ln5s40otMMeyAGM/+EM5m1hjkvBxmlK6gwSbPeElE2UrgLd/pqYY4ZXLnR/lqkxx+Da6o63ajBQqbzbyfiZ4mU4y1ulWS0Igbv7B153a8W/TAUq99In4GqwEaQHjA2FzWjJe3tpzPB8OJGG2gWvZBUaCE50oIGGuW8sgPf2c9wrHqHrjK4JaHB8HsqMpN0CioAolQL/MZ/HPoD1NGp+EqbY9tscmxKJDdnOqc3cU2sSeeDwxVKQDBccfkJYFnenVA2fwQKBMfnxn+j/wTQZrTq6cvEUWuaqTV2TUk4+KqPqST4bnpEIN4YKMDhbylmIsJ7UVL1NEzt98p+woLEPnfqXEzSf4Y=----ATTACHMENT:----NDI5NTM2MTQwMTM4NTUzOSA5MzY1MTM0Nzg5MjE1NjkyIDI1MTEyNzQ3MjQ1Njc4MTc=