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

getAlwaysUsedPropertiesAnnotations() private method

private getAlwaysUsedPropertiesAnnotations ( ) : string[]
return string[]
    private function getAlwaysUsedPropertiesAnnotations()
    {
        if ($this->normalizedAlwaysUsedPropertiesAnnotations === null) {
            $this->normalizedAlwaysUsedPropertiesAnnotations = SniffSettingsHelper::normalizeArray($this->alwaysUsedPropertiesAnnotations);
        }
        return $this->normalizedAlwaysUsedPropertiesAnnotations;
    }