apache / netbeans

Apache NetBeans
https://netbeans.apache.org/
Apache License 2.0
2.63k stars 840 forks source link

Fix incorrect formatting for a static method invocation [GH-7524] #7526

Closed junichi11 closed 2 months ago

junichi11 commented 2 months ago

Example:

// Options: Continuation Indentation = 4
$test = Test::staticMethod(
        test(
            'test',
            $arg1,
            $arg2
        ),
        $arg
);

Before:

$test = Test::staticMethod(
        test(
            'test',
            $arg1,
            $arg2
        ),
        $arg
);

After:

$test = Test::staticMethod(
    test(
        'test',
        $arg1,
        $arg2
    ),
    $arg
);