<?php
namespace IlluminateContractsCache;
interface Factory
{
    /**
     * Get a cache store instance by name.
     *
     * @param  string|null  $name
     * @return IlluminateContractsCacheRepository
     */
    public function store($name = null);
}