getSelectedText(); $aliases = $statements_source->getAliasedClassesFlipped(); if ($statements_source->getFilePath() !== $code_location->file_path) { return; } if (strpos($candidate_type, '\\' . $fq_class_name) !== false) { $type_tokens = Type::tokenize($candidate_type, false); foreach ($type_tokens as &$type_token) { if ($type_token[0] === ('\\' . $fq_class_name) && isset($aliases[strtolower($fq_class_name)]) ) { $type_token[0] = $aliases[strtolower($fq_class_name)]; } } $new_candidate_type = implode( '', array_map( function ($f) { return $f[0]; }, $type_tokens ) ); if ($new_candidate_type !== $candidate_type) { $bounds = $code_location->getSelectionBounds(); $file_replacements[] = new FileManipulation($bounds[0], $bounds[1], $new_candidate_type); } } } }