We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46632c9 commit d65b6e0Copy full SHA for d65b6e0
components/options_resolver.rst
@@ -85,11 +85,11 @@ options are buried in the business logic of your code. Use the
85
}
86
87
88
-Now all four options are guaranteed to be set. Consider the user of the
89
-``Mailer`` class makes a mistake::
+Now all four options are guaranteed to be set, but you could still make an error
+like the following when using the ``Mailer`` class::
90
91
$mailer = new Mailer([
92
- 'usernme' => 'johndoe', // usernme misspelled (instead of username)
+ 'usernme' => 'johndoe', // 'username' is wrongly spelled as 'usernme'
93
]);
94
95
No error will be shown. In the best case, the bug will appear during testing,
0 commit comments