SlevomatCodingStandard\Sniffs\Namespaces\FullyQualifiedClassNameAfterKeywordSniff::getKeywordsToCheck PHP Méthode

getKeywordsToCheck() private méthode

private getKeywordsToCheck ( ) : string[]
Résultat string[]
    private function getKeywordsToCheck()
    {
        if ($this->normalizedKeywordsToCheck === null) {
            $this->normalizedKeywordsToCheck = SniffSettingsHelper::normalizeArray($this->keywordsToCheck);
        }
        return $this->normalizedKeywordsToCheck;
    }