SlevomatCodingStandard\Sniffs\Namespaces\FullyQualifiedClassNameAfterKeywordSniff::getKeywordsToCheck PHP Method

getKeywordsToCheck() private method

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