bobthecow/psysh

Literals should be allowed as first operand of instanceof in PHP 7.3+

Closed this issue · 1 comments

Instanceof Operator accepts Literals is one of the new features in PHP 7.3, so this should not be rejected (anymore):

$ php vendor/bin/psysh 
Psy Shell v0.10.4 (PHP 7.4.3 — cli) by Justin Hileman
>>> var_dump( null instanceof stdClass );
PHP Fatal error:  instanceof expects an object instance, constant given in Psy Shell code on line 1
>>> ^D
Exit:  Ctrl+D

$ php -a
Interactive mode enabled

php > var_dump( null instanceof stdClass );
php shell code:1:
bool(false)
php > ^D

Thanks for reporting. This has been fixed and will go in the next stable release :)