File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 1616
1717namespace Phpfastcache \Config ;
1818
19+ use Phpfastcache \Exceptions \PhpfastcacheInvalidArgumentException ;
1920use Phpfastcache \Exceptions \PhpfastcacheInvalidConfigurationException ;
21+ use Phpfastcache \Exceptions \PhpfastcacheLogicException ;
2022
2123interface ConfigurationOptionInterface extends LockableConfigurationInterface
2224{
@@ -134,4 +136,19 @@ public function isUseStaticItemCaching(): bool;
134136 * @return ConfigurationOption
135137 */
136138 public function setUseStaticItemCaching (bool $ useStaticItemCaching ): static ;
139+
140+ /**
141+ * @return object
142+ * @throws PhpfastcacheInvalidArgumentException
143+ * @throws PhpfastcacheLogicException
144+ */
145+ public function getSuperGlobalAccessor (): object ;
146+
147+ /**
148+ * @param ?object $superGlobalAccessor
149+ * @return static
150+ * @throws PhpfastcacheInvalidArgumentException
151+ * @throws PhpfastcacheLogicException
152+ */
153+ public function setSuperGlobalAccessor (?object $ superGlobalAccessor ): static ;
137154}
You can’t perform that action at this time.
0 commit comments