Named arguments: Only those that are useful will be applied. One-parameter function calls are omitted. Common PHP function calls are omitted. The occurrences that are clear from the variable names are also omitted. Sometimes, if applying this feature doesn't make the code longer, I'll apply it anyway.
Private constants: PHP supports PHP constants since 5.6 (but not for traits until 8.2). private static $varName will be used only for the real class non-constants, unless there is calculation needed in the constant assignment, which is not supported by PHP yet.
private static $varName
will be used only for the real class non-constants, unless there is calculation needed in the constant assignment, which is not supported by PHP yet.Bug: N/A Golden CLs: N/A