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 2fdb511 commit 6cf7d11Copy full SHA for 6cf7d11
OptionsResolver.php
@@ -783,11 +783,9 @@ public function offsetGet($option)
783
foreach ($this->lazy[$option] as $closure) {
784
$value = $closure($this, $value);
785
}
786
- } catch (\Exception $e) {
+ } finally {
787
unset($this->calling[$option]);
788
- throw $e;
789
790
- unset($this->calling[$option]);
791
// END
792
793
@@ -885,11 +883,9 @@ public function offsetGet($option)
885
883
$this->calling[$option] = true;
886
884
try {
887
$value = $normalizer($this, $value);
888
889
890
891
892
893
894
895
0 commit comments