kwn/number-to-words

View on GitHub
src/Language/German/GermanTripletTransformer.php

Summary

Maintainability
A
2 hrs
Test Coverage
A
100%
<?php

namespace NumberToWords\Language\German;

use NumberToWords\Language\PowerAwareTripletTransformer;

class GermanTripletTransformer implements PowerAwareTripletTransformer
{
    private GermanDictionary $dictionary;

    public function __construct(GermanDictionary $dictionary)
    {
        $this->dictionary = $dictionary;
    }

    public function transformToWords(int $number, int $power): string
    {
        $units = $number % 10;
        $tens = (int) ($number / 10) % 10;
        $hundreds = (int) ($number / 100) % 10;
        $words = [];

        if ($hundreds > 0) {
            $words[] = $this->dictionary->getCorrespondingHundred($hundreds);
        }

        if ($tens === 1) {
            $words[] = $this->dictionary->getCorrespondingTeen($units);
        }

        if ($units > 0 && $tens !== 1) {
            $words[] = $this->dictionary->getCorrespondingUnit($units);

            if ($tens > 1) {
                $words[] = 'und';
            } elseif ($units === 1) {
                if ($power === 0) {
                    $words[] = 's';
                } elseif ($power !== 1) {
                    $words[] = 'e';
                }
            }
        }

        if ($tens > 1) {
            $words[] = $this->dictionary->getCorrespondingTen($tens);
        }

        return implode('', $words);
    }
}