i18nPlugin icon indicating copy to clipboard operation
i18nPlugin copied to clipboard

False positive for Unresolved key

Open lurkie opened this issue 2 years ago • 0 comments

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

lurkie avatar May 10 '22 09:05 lurkie