zephir-lang / php-zephir-parser

The Zephir Parser delivered as a C extension for the PHP language.
https://zephir-lang.com
MIT License
186 stars 36 forks source link

[NFR] Add support for `mixed` return type (PHP >= 8.0) #120

Closed Jeckerson closed 3 years ago

Jeckerson commented 3 years ago
public function current() -> mixed
{
   // return some mixed value;
}

and

public function current(mixed val) -> mixed
{
   //
}