SlevomatCodingStandard\Sniffs\Namespaces\ReferenceUsedNamesOnlySniff::getIgnoredNames PHP Method

getIgnoredNames() private method

private getIgnoredNames ( ) : string[]
return string[]
    private function getIgnoredNames()
    {
        if ($this->normalizedIgnoredNames === null) {
            $this->normalizedIgnoredNames = SniffSettingsHelper::normalizeArray($this->ignoredNames);
        }
        return $this->normalizedIgnoredNames;
    }