14 lines
210 B
PHP
14 lines
210 B
PHP
|
<?php namespace Illuminate\Contracts\Cache;
|
||
|
|
||
|
interface Factory {
|
||
|
|
||
|
/**
|
||
|
* Get a cache store instance by name.
|
||
|
*
|
||
|
* @param string|null $name
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function store($name = null);
|
||
|
|
||
|
}
|