1 | <?php |
||
11 | class TextToSpeechServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /** |
||
14 | * Bootstrap the application services. |
||
15 | */ |
||
16 | public function boot() |
||
24 | |||
25 | /** |
||
26 | * Register the application services. |
||
27 | */ |
||
28 | public function register() |
||
38 | |||
39 | /** |
||
40 | * Registers the Text to speech manager. |
||
41 | * |
||
42 | * @return void |
||
43 | */ |
||
44 | protected function registerTextToSpeechManager() |
||
50 | |||
51 | /** |
||
52 | * Register aliases. |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | protected function registerAliases() |
||
60 | |||
61 | /** |
||
62 | * Binds the filename formatter. |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | protected function bindFilenameFormatter() |
||
70 | |||
71 | /** |
||
72 | * Get the services provided by the provider. |
||
73 | * |
||
74 | * @return array |
||
75 | */ |
||
76 | public function provides() |
||
82 | } |
||
83 |