1Comments on function parameters 2----- 3<?php 4 5class Test { 6 function test( 7 // Comment 8 $param 9 ) { 10 } 11} 12 13function test( 14 // Comment 15 $param 16) { 17} 18 19function( 20 // Comment 21 $param 22) { 23}; 24 25fn( 26 // Comment 27 $param 28) => 42; 29----- 30class Test 31{ 32 function test( 33 // Comment 34 $param 35 ) 36 { 37 } 38} 39function test( 40 // Comment 41 $param 42) 43{ 44} 45function ( 46 // Comment 47 $param 48) { 49}; 50fn( 51 // Comment 52 $param 53) => 42; 54----- 55<?php 56 57class Test { 58 function test( 59 // Comment 60 $param 61 ) { 62 } 63} 64 65function test( 66 // Comment 67 $param 68) { 69} 70 71function( 72 // Comment 73 $param 74) { 75}; 76 77fn( 78 // Comment 79 $param 80) => 42; 81----- 82!!version=8.0 83class Test 84{ 85 function test( 86 // Comment 87 $param, 88 ) 89 { 90 } 91} 92function test( 93 // Comment 94 $param, 95) 96{ 97} 98function ( 99 // Comment 100 $param, 101) { 102}; 103fn( 104 // Comment 105 $param, 106) => 42; 107