Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class MozillaTTS implements IProvider |
||
6 | { |
||
7 | private $url; |
||
8 | private $apiKey; |
||
9 | private $filePath; |
||
10 | |||
11 | public function __construct(string $url, string $apiKey, string $filePath) |
||
16 | } |
||
17 | |||
18 | public function convert(string $text): string |
||
21 | } |
||
22 | |||
23 | private function request(string $data): string |
||
42 |