zephir-lang/php-zephir-parser

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

Jeckerson opened this issue · 0 comments

public function current() -> mixed
{
   // return some mixed value;
}

and

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