sebastianbergmann / php-token-stream

Wrapper around PHP's tokenizer extension.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

function name used as typehint for first argument

soxofaan opened this issue · comments

input:

public function blaz($x, $y)
{
}

getArguments() on the "function" token gives

Array (
    '$x' => 'blaz'
    '$y' => null
)