0

php multiline function parameter highlight

U N. 12 aastat tagasi 0

In the following snippet for PHP, the last function argument ($unhideNew) is not highlighted (unless followed by ")" on the same line)

<?php 

class test {
 private function importAbstract(
 $argv, $unhideNew
 ) {
 }
}