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 16
16
17
17
namespace Phpfastcache \Config ;
18
18
19
+ use Phpfastcache \Exceptions \PhpfastcacheInvalidArgumentException ;
19
20
use Phpfastcache \Exceptions \PhpfastcacheInvalidConfigurationException ;
21
+ use Phpfastcache \Exceptions \PhpfastcacheLogicException ;
20
22
21
23
interface ConfigurationOptionInterface extends LockableConfigurationInterface
22
24
{
@@ -134,4 +136,19 @@ public function isUseStaticItemCaching(): bool;
134
136
* @return ConfigurationOption
135
137
*/
136
138
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 ;
137
154
}
You can’t perform that action at this time.
0 commit comments