We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec4459 commit cee53edCopy full SHA for cee53ed
src/Illuminate/Cache/CacheManager.php
@@ -91,7 +91,7 @@ protected function get($name)
91
*
92
* @throws \InvalidArgumentException
93
*/
94
- protected function resolve($name)
+ public function resolve($name)
95
{
96
$config = $this->getConfig($name);
97
src/Illuminate/Cache/Repository.php
@@ -587,6 +587,19 @@ public function getStore()
587
return $this->store;
588
}
589
590
+ /**
591
+ * Set the cache store implementation.
592
+ *
593
+ * @param \Illuminate\Contracts\Cache\Store $store
594
+ * @return static
595
+ */
596
+ public function setStore($store)
597
+ {
598
+ $this->store = $store;
599
+
600
+ return $this;
601
+ }
602
603
/**
604
* Fire an event for this cache instance.
605
0 commit comments