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
When the argument list is split across multiple lines, the closing parenthesis
and opening brace MUST be placed together on their own line with one space
between them.
class ClassName
{
public function aVeryLongMethodName(
ClassTypeHint $arg1,
&$arg2,
array $arg3 = []
)
{ // <--- should be on the above line, ) {
// method body
}
}
The text was updated successfully, but these errors were encountered:
Hey - The issue is that NetBeans does not support this request (unless it's
been added in a VERY recent update) - Have you been able to configure this
through the settings in NetBeans?
On 2 February 2018 at 12:59, boan2010 ***@***.***> wrote:
When the argument list is split across multiple lines, the closing
parenthesis
and opening brace MUST be placed together on their own line with one space
between them.
https://www.php-fig.org/psr/psr-2/#44-method-arguments
Bug:
class ClassName
{
public function aVeryLongMethodName(
ClassTypeHint $arg1,
&$arg2,
array $arg3 = []
)
{ // <--- should be on the above line, ) {
// method body
}
}
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#14>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAu2jEmhHaUmT7cLGIzO6Z8flfo5Tz8oks5tQwaWgaJpZM4R3JbF>
.
https://www.php-fig.org/psr/psr-2/#44-method-arguments
Bug:
The text was updated successfully, but these errors were encountered: