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() |
||
40 | |||
41 | /** |
||
42 | * Registers the Text to speech manager. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | protected function registerTextToSpeechManager() |
||
52 | |||
53 | /** |
||
54 | * Register aliases. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | protected function registerAliases() |
||
62 | |||
63 | /** |
||
64 | * Binds the filename formatter. |
||
65 | * |
||
66 | * @return void |
||
67 | */ |
||
68 | protected function bindFilenameFormatter() |
||
72 | |||
73 | /** |
||
74 | * Binds the default source. |
||
75 | * |
||
76 | * @return void |
||
77 | */ |
||
78 | protected function bindSource() |
||
82 | |||
83 | /** |
||
84 | * Get the services provided by the provider. |
||
85 | * |
||
86 | * @return array |
||
87 | */ |
||
88 | public function provides() |
||
94 | } |
||
95 |