| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class SampleTokenGenerator implements TokenProviderInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Generate a fake token just as an example. |
||
| 12 | * |
||
| 13 | * @param string $source Source language |
||
| 14 | * @param string $target Target langiage |
||
| 15 | * @param string $text Text to translate |
||
| 16 | * @return string Token |
||
| 17 | */ |
||
| 18 | public function generateToken(string $source, string $target, string $text) : string |
||
| 23 |