Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
3 / 3
CRAP
100.00% covered (success)
100.00%
1 / 1
ApieTranslator
100.00% covered (success)
100.00%
14 / 14
100.00% covered (success)
100.00%
3 / 3
7
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 create
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
 getGeneralTranslation
100.00% covered (success)
100.00%
9 / 9
100.00% covered (success)
100.00%
1 / 1
5
1<?php
2namespace Apie\Core\Translator;
3
4use Apie\Core\Context\ApieContext;
5use Apie\Core\Translator\Lists\TranslationStringSet;
6use Apie\Core\Translator\ValueObjects\TranslationString;
7
8class ApieTranslator implements ApieTranslatorInterface
9{
10    /**
11     * @var array<int, ApieTranslatorInterface>
12     */
13    private array $translators;
14
15    public function __construct(
16        ApieTranslatorInterface... $translators
17    ) {
18        $this->translators = $translators;
19    }
20
21    public static function create(): self
22    {
23        return new self(
24            new DefaultLabelPropertyTranslator(),
25            FromFileTranslator::createFallback()
26        );
27    }
28
29    public function getGeneralTranslation(ApieContext $context, TranslationString|TranslationStringSet $translation): string
30    {
31        foreach ($this->translators as $translator) {
32            $res = $translator->getGeneralTranslation($context, $translation);
33            if ($res !== null) {
34                return $res;
35            }
36        }
37
38        if ($translation instanceof TranslationStringSet) {
39            foreach ($translation as $someTranslation) {
40                return (string) $someTranslation;
41            }
42            return '(unknown)';
43        }
44
45        return (string) $translation;
46    }
47}