Hi,
Found a bug for the tooltip and function that return reference:
<?php
namespace Devsense\Builtin;
class Test
{
public function search(string $name): mixed
{
throw new \Exception();
}
public function &retrieve(string $name): mixed
{
throw new \Exception();
}
public function &__get(string $name): mixed
{
throw new \Exception();
}
}
Thank you for the fix.