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
* Make sure the options are valid and the dependencies are met.
30
+
*
31
+
* @param array $options the options the user has provided
32
+
* @param string $adapterName the name the user has chosen for this adapter
33
+
*
34
+
* @throws \LogicException If the factory has missing dependencies
35
+
* @throws \Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException If an option name is undefined
36
+
* @throws \Symfony\Component\OptionsResolver\Exception\InvalidOptionsException If an option doesn't fulfill the specified validation rules
37
+
* @throws \Symfony\Component\OptionsResolver\Exception\MissingOptionsException If a required option is missing
38
+
* @throws \Symfony\Component\OptionsResolver\Exception\OptionDefinitionException If there is a cyclic dependency between lazy options and/or normalizers
39
+
* @throws \Symfony\Component\OptionsResolver\Exception\NoSuchOptionException If a lazy option reads an unavailable option
40
+
* @throws \Symfony\Component\OptionsResolver\Exception\AccessException If called from a lazy option or normalizer
0 commit comments