Skip to content
Merged
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 wordpress-coding-standards/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Closures must not be passed as filter or action callbacks, as they cannot be rem

<h3>Multiline Function Calls</h3>

When splitting a function call over multiple lines, each parameter must be on a seperate line. Single line inline comments can take up their own line.
When splitting a function call over multiple lines, each parameter must be on a separate line. Single line inline comments can take up their own line.

Each parameter must take up no more than a single line. Multi-line parameter values must be assigned to a variable and then that variable should be passed to the function call.

Expand Down