function AbstractFullyQualifiedGlobalReference::getNormalizedExclude
*
Return value
list<string>
1 call to AbstractFullyQualifiedGlobalReference::getNormalizedExclude()
- AbstractFullyQualifiedGlobalReference::process in vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ Namespaces/ AbstractFullyQualifiedGlobalReference.php - * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint *
File
-
vendor/
slevomat/ coding-standard/ SlevomatCodingStandard/ Sniffs/ Namespaces/ AbstractFullyQualifiedGlobalReference.php, line 147
Class
- AbstractFullyQualifiedGlobalReference
- @internal
Namespace
SlevomatCodingStandard\Sniffs\NamespacesCode
private function getNormalizedExclude() : array {
if ($this->normalizedExclude === null) {
$this->normalizedExclude = $this->normalizeNames($this->exclude);
}
return $this->normalizedExclude;
}