PhpCsFixer\AbstractPhpdocTypesFixer::normalizeTypes PHP Method

normalizeTypes() private method

Normalize the given types.
private normalizeTypes ( array $types ) : string[]
$types array
return string[]
    private function normalizeTypes(array $types)
    {
        foreach ($types as $index => $type) {
            $types[$index] = $this->normalizeType($type);
        }
        return $types;
    }