Comments on function parameters ----- 42; ----- class Test { function test( // Comment $param ) { } } function test( // Comment $param ) { } function ( // Comment $param ) { }; fn( // Comment $param ) => 42; ----- 42; ----- !!version=8.0 class Test { function test( // Comment $param, ) { } } function test( // Comment $param, ) { } function ( // Comment $param, ) { }; fn( // Comment $param, ) => 42;