SlevomatCodingStandard\Sniffs\Namespaces\ReferenceUsedNamesOnlySniff::getIgnoredNames PHP 메소드

getIgnoredNames() 개인적인 메소드

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