1 | <?php |
||
11 | class VoiceAdapterFactory |
||
12 | { |
||
13 | const VOICE_PROVIDER_GOOGLE = 'google'; |
||
14 | const VOICE_PROVIDER_IVONA = 'ivona'; |
||
15 | /** |
||
16 | * @var ConfigInterface|Config |
||
17 | */ |
||
18 | protected $config; |
||
19 | |||
20 | public function __construct(ConfigInterface $config) |
||
24 | |||
25 | /** |
||
26 | * @return \AudioManager\Adapter\AdapterInterface |
||
27 | * @throws RuntimeException |
||
28 | */ |
||
29 | public function __invoke() |
||
51 | } |