It seems that variadics -- available in php since 5.6 -- are not recognized by the tokenizer. For example for the line of code:
public function enum($value, ...$items)
i get the following wrong error message (PSR-2 standard):
Expected 1 space between comma and argument "$items"; 0 found
It seems that variadics -- available in php since 5.6 -- are not recognized by the tokenizer. For example for the line of code:
i get the following wrong error message (PSR-2 standard):
Expected 1 space between comma and argument "$items"; 0 found