Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed description about passing [mandatory|optional] parameter order. #270

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion language/functions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function takes_many_args(
</programlisting>
</example>
<para>
As of PHP 8.0.0, passing optional arguments after mandatory arguments
As of PHP 8.0.0, passing mandatory arguments after optional arguments
is deprecated. This can generally be resolved by dropping the default value.
One exception to this rule are arguments of the form
<code>Type $param = null</code>, where the &null; default makes the type implicitly
Expand Down