1 | <?php |
||
37 | class ConsoleServiceProvider implements ServiceProviderInterface |
||
38 | { |
||
39 | /** |
||
40 | * Registers the service provider with a DI container. |
||
41 | * |
||
42 | * @param Container $container The DI container. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | 11 | public function register(Container $container): void |
|
71 | |||
72 | /** |
||
73 | * Get the LoaderInterface service |
||
74 | * |
||
75 | * @param Container $container The DI container. |
||
76 | * |
||
77 | * @return LoaderInterface |
||
78 | */ |
||
79 | 1 | public function getCommandLoaderService(Container $container): LoaderInterface |
|
95 | |||
96 | /** |
||
97 | * Get the console Application service |
||
98 | * |
||
99 | * @param Container $container The DI container. |
||
100 | * |
||
101 | * @return Application |
||
102 | */ |
||
103 | 1 | public function getConsoleApplicationService(Container $container): Application |
|
114 | |||
115 | /** |
||
116 | * Get the MigrateCommand service |
||
117 | * |
||
118 | * @param Container $container The DI container. |
||
119 | * |
||
120 | * @return MigrateCommand |
||
121 | */ |
||
122 | public function getDatabaseMigrateCommandService(Container $container): MigrateCommand |
||
129 | |||
130 | /** |
||
131 | * Get the MigrationStatusCommand service |
||
132 | * |
||
133 | * @param Container $container The DI container. |
||
134 | * |
||
135 | * @return MigrationStatusCommand |
||
136 | */ |
||
137 | public function getDatabaseMigrationStatusCommandService(Container $container): MigrationStatusCommand |
||
141 | |||
142 | /** |
||
143 | * Get the DebugEventDispatcherCommand service |
||
144 | * |
||
145 | * @param Container $container The DI container. |
||
146 | * |
||
147 | * @return DebugEventDispatcherCommand |
||
148 | */ |
||
149 | public function getDebugEventDispatcherCommandService(Container $container): DebugEventDispatcherCommand |
||
153 | |||
154 | /** |
||
155 | * Get the DebugRouterCommand service |
||
156 | * |
||
157 | * @param Container $container The DI container. |
||
158 | * |
||
159 | * @return DebugRouterCommand |
||
160 | */ |
||
161 | public function getDebugRouterCommandService(Container $container): DebugRouterCommand |
||
165 | |||
166 | /** |
||
167 | * Get the FetchJoomlaTagsCommand service |
||
168 | * |
||
169 | * @param Container $container The DI container. |
||
170 | * |
||
171 | * @return FetchJoomlaTagsCommand |
||
172 | */ |
||
173 | public function getFetchJoomlaTagsCommandService(Container $container): FetchJoomlaTagsCommand |
||
177 | |||
178 | /** |
||
179 | * Get the FetchPhpTagsCommand class service |
||
180 | * |
||
181 | * @param Container $container The DI container. |
||
182 | * |
||
183 | * @return FetchPhpTagsCommand |
||
184 | */ |
||
185 | public function getFetchPhpTagsCommandService(Container $container): FetchPhpTagsCommand |
||
189 | |||
190 | /** |
||
191 | * Get the SnapshotCommand service |
||
192 | * |
||
193 | * @param Container $container The DI container. |
||
194 | * |
||
195 | * @return SnapshotCommand |
||
196 | */ |
||
197 | public function getSnapshotCommandService(Container $container): SnapshotCommand |
||
201 | |||
202 | /** |
||
203 | * Get the SnapshotRecentlyUpdatedCommand service |
||
204 | * |
||
205 | * @param Container $container The DI container. |
||
206 | * |
||
207 | * @return SnapshotRecentlyUpdatedCommand |
||
208 | */ |
||
209 | public function getSnapshotRecentlyUpdatedCommandService(Container $container): SnapshotRecentlyUpdatedCommand |
||
213 | |||
214 | /** |
||
215 | * Get the UpdateCommand class service |
||
216 | * |
||
217 | * @param Container $container The DI container. |
||
218 | * |
||
219 | * @return UpdateCommand |
||
220 | */ |
||
221 | public function getUpdateCommandService(Container $container): UpdateCommand |
||
225 | } |
||
226 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.