testData/codeInsight/fixes/FqnUsageInWildcard.after.php (13 lines of code) (raw):

<?php 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) { } }