feat : cache Adapter
This commit is contained in:
12
app/Interface/Test/Adapter/CacheInterface.php
Normal file
12
app/Interface/Test/Adapter/CacheInterface.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interface\Test\Adapter;
|
||||
|
||||
interface CacheInterface
|
||||
{
|
||||
/**
|
||||
* @param string $key
|
||||
* @return array
|
||||
*/
|
||||
public function get(string $key): array;
|
||||
}
|
||||
Reference in New Issue
Block a user