SlevomatCodingStandard\Sniffs\Classes\UnusedPrivateElementsSniff::getAlwaysUsedPropertiesSuffixes PHP Method

getAlwaysUsedPropertiesSuffixes() private method

private getAlwaysUsedPropertiesSuffixes ( ) : string[]
return string[]
    private function getAlwaysUsedPropertiesSuffixes()
    {
        if ($this->normalizedAlwaysUsedPropertiesSuffixes === null) {
            $this->normalizedAlwaysUsedPropertiesSuffixes = SniffSettingsHelper::normalizeArray($this->alwaysUsedPropertiesSuffixes);
        }
        return $this->normalizedAlwaysUsedPropertiesSuffixes;
    }