10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
namespace WPML\Auryn;
|
|
|
|
interface ReflectionCache
|
|
{
|
|
public function fetch($key);
|
|
public function store($key, $data);
|
|
}
|