You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -694,12 +694,12 @@ public function offsetGet($option)
694
694
}
695
695
696
696
// Shortcut for resolved options
697
-
if (array_key_exists($option, $this->resolved)) {
697
+
if (\array_key_exists($option, $this->resolved)) {
698
698
return$this->resolved[$option];
699
699
}
700
700
701
701
// Check whether the option is set at all
702
-
if (!array_key_exists($option, $this->defaults)) {
702
+
if (!\array_key_exists($option, $this->defaults)) {
703
703
if (!isset($this->defined[$option])) {
704
704
thrownewNoSuchOptionException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $option, implode('", "', array_keys($this->defined))));
705
705
}
@@ -908,7 +908,7 @@ public function offsetExists($option)
908
908
thrownewAccessException('Array access is only supported within closures of lazy options and normalizers.');
0 commit comments