bobthecow / psysh

A REPL for PHP
https://psysh.org
MIT License
9.74k stars 310 forks source link

doc/show commands do not work with relative namespaces #783

Closed tgr closed 7 months ago

tgr commented 7 months ago
Psy Shell v0.12.2 (PHP 7.4.33 — cli) by Justin Hileman
> class C {}
> doc C

   InvalidArgumentException  Unknown namespace, class or function:

> doc \C
class C
> doc ArrayObject

   InvalidArgumentException  Unknown namespace, class or function:

> doc \ArrayObject
class ArrayObject implements ArrayAccess, Countable, IteratorAggregate, Serializable, Traversable
tgr commented 7 months ago

Only happens for classes; reflection works fine for functions.

bobthecow commented 7 months ago

Thanks for reporting. It seems like this was broken by c23d4f09bf6894df7492442556e99bdee94f6687 in v0.11.15. Should be a quick fix.

bobthecow commented 7 months ago

Fix released in v0.12.3. Thanks again!