blob: 3924662d6cbc8fa5a1bf237ff4a0b20bc599eda3 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Cache;
4
5interface Factory
6{
7 /**
8 * Get a cache store instance by name.
9 *
10 * @param string|null $name
11 * @return \Illuminate\Contracts\Cache\Repository
12 */
13 public function store($name = null);
14}