testData/codeInsight/fixes/FqnUsageInWildcard.after.php [2:15]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
namespace First;
class LogLevel
{
    const EMERGENCY = 'emergency';
    const ALERT     = 'alert';
}
namespace x;
use First\LogLevel;
class Test {

    /**
     * @param <caret>LogLevel::* $fatalLevel
     */
    public static function register($errorLevelMap, $fatalLevel = null) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



testData/codeInsight/fixes/FqnUsageInWildcard.php [2:15]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
namespace First;
class LogLevel
{
    const EMERGENCY = 'emergency';
    const ALERT     = 'alert';
}
namespace x;
use First\LogLevel;
class Test {

    /**
     * @param  <caret>\First\LogLevel::* $fatalLevel
     */
    public static function register($errorLevelMap, $fatalLevel = null) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



