function UnusedUsesSniff::getIgnoredAnnotations
*
Return value
list<string>
1 call to UnusedUsesSniff::getIgnoredAnnotations()
- UnusedUsesSniff::process in vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ Namespaces/ UnusedUsesSniff.php - * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint *
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ Namespaces/ UnusedUsesSniff.php, line 271
Class
Namespace
SlevomatCodingStandard\Sniffs\NamespacesCode
private function getIgnoredAnnotations() : array {
if ($this->normalizedIgnoredAnnotations === null) {
$this->normalizedIgnoredAnnotations = SniffSettingsHelper::normalizeArray($this->ignoredAnnotations);
}
return $this->normalizedIgnoredAnnotations;
}