Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class BraintreeToGlossaryClientBridge implements BraintreeToGlossaryClientInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var \Spryker\Client\Glossary\GlossaryClientInterface |
||
14 | */ |
||
15 | protected $glossaryClient; |
||
16 | |||
17 | /** |
||
18 | * @param \Spryker\Client\Glossary\GlossaryClientInterface $glossaryClient |
||
19 | */ |
||
20 | public function __construct($glossaryClient) |
||
21 | { |
||
22 | $this->glossaryClient = $glossaryClient; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $id |
||
27 | * @param string $localeName |
||
28 | * @param array $parameters |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function translate($id, $localeName, array $parameters = []) |
||
35 | } |
||
36 | } |
||
37 |