Factory.php 263 B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Cache;
  3. interface Factory
  4. {
  5. /**
  6. * Get a cache store instance by name.
  7. *
  8. * @param string|null $name
  9. * @return \Illuminate\Contracts\Cache\Repository
  10. */
  11. public function store($name = null);
  12. }