[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.117.172.21: ~ $
<?php

namespace Metadata\Cache;

use Metadata\ClassMetadata;

interface CacheInterface
{
    /**
     * Loads a class metadata instance from the cache
     *
     * @param \ReflectionClass $class
     *
     * @return ClassMetadata
     */
    function loadClassMetadataFromCache(\ReflectionClass $class);

    /**
     * Puts a class metadata instance into the cache
     *
     * @param ClassMetadata $metadata
     *
     * @return void
     */
    function putClassMetadataInCache(ClassMetadata $metadata);

    /**
     * Evicts the class metadata for the given class from the cache.
     *
     * @param \ReflectionClass $class
     *
     * @return void
     */
    function evictClassMetadataFromCache(\ReflectionClass $class);
}

Filemanager

Name Type Size Permission Actions
CacheInterface.php File 738 B 0644
DoctrineCacheAdapter.php File 1.13 KB 0644
FileCache.php File 2.37 KB 0644
PsrCacheAdapter.php File 1.19 KB 0644