Closed alganet closed 9 years ago
Problem:
[instanceof Foo\Bar] baz = something [lorem Foo\Ipsum] baz = [Foo\Bar] ; not a valid name
Quick Fix:
protected function matchReference(&$value) { if (preg_match('/^\[([[:alnum:]\\\\]+)\]$/', $value, $match)) { return (boolean) ($value = $match[1]); } }
Still digging the problem.
@alganet PR #52 fixes this issue? Can you close this issue please?
/cc @henriquemoody
Thanks for reporting, @jackmakiyama
:beers:
Problem:
Quick Fix:
Still digging the problem.