Solved False positive about PSR class path with phpstorm & extension_hint.php

This topic has been solved
X

Xon

Guest
The generated extension_hint.php file is used to create developer aliases for IDE autocompletion. However if phpstorm analyzes this file it generates warnings/errors for not matching PSR class path conventions.

This can be supressed by emitting the following at the top of the file:
Code:

Code:
<?php
/** @noinspection PhpIllegalPsrClassPathInspection */

Continue reading...