Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
jms
/
metadata
/
src
/
Cache
/
File Content:
CacheInterface.php
<?php declare(strict_types=1); namespace Metadata\Cache; use Metadata\ClassMetadata; interface CacheInterface { /** * Loads a class metadata instance from the cache */ public function load(string $class): ?ClassMetadata; /** * Puts a class metadata instance into the cache */ public function put(ClassMetadata $metadata): void; /** * Evicts the class metadata for the given class from the cache. */ public function evict(string $class): void; }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
CacheInterface.php
505 bytes
0644
ClearableCacheInterface.php
258 bytes
0644
DoctrineCacheAdapter.php
1190 bytes
0644
FileCache.php
4015 bytes
0644
PsrCacheAdapter.php
1738 bytes
0644
N4ST4R_ID | Naxtarrr