composer package updates
[openemr.git] / vendor / illuminate / contracts / Cache / Factory.php
blob3924662d6cbc8fa5a1bf237ff4a0b20bc599eda3
1 <?php
3 namespace Illuminate\Contracts\Cache;
5 interface Factory
7 /**
8 * Get a cache store instance by name.
10 * @param string|null $name
11 * @return \Illuminate\Contracts\Cache\Repository
13 public function store($name = null);