sstalle / php7cc

PHP 7 Compatibility Checker
MIT License
1.52k stars 120 forks source link

Unquoted string as index or general not detected #145

Open voskynet opened 6 years ago

voskynet commented 6 years ago

$var[not_defined_constant] = $other_var.

It is a warning in php 7 and will throw error in future versions.

It should be $var['not_defined_constant'] = $other_var.

Are you planning on implementing it?

Thanks