i18nPlugin
i18nPlugin copied to clipboard
False positive for Unresolved key
In PHPStorm, the following code snippet will result into an 'Unresolved key' inspection. Besides the fact that gettext()
should probably used differently, the inspection is not correct. I would have expected no warning at this point.
$array = ['foo' => 'bar'];
echo _($array['foo']);
Perhaps related to issue #85