In the code provided, there is no standard indentation for named parameters in PHP. The code may be formatted and indented according to personal preferences or team standards. However, it is common to align the parameters vertically for better readability, as shown below:
less
Copy code
$variable = new Classs(
param1: 'value',
param2: 123
);
functionnn(
a: 1321321,
b: 454968,
c: 84798789,
d: 878987
);
This helps distinguish the named parameters and their values, making the code easier to read and understand.