|
@@ 158-165 (lines=8) @@
|
| 155 |
|
|
| 156 |
|
$container->share( |
| 157 |
|
HelpCommand::class, |
| 158 |
|
function (Container $container) |
| 159 |
|
{ |
| 160 |
|
$command = new HelpCommand; |
| 161 |
|
|
| 162 |
|
$command->setApplication($container->get(JoomlaApplication\AbstractApplication::class)); |
| 163 |
|
$command->setInput($container->get(Input::class)); |
| 164 |
|
|
| 165 |
|
return $command; |
| 166 |
|
}, |
| 167 |
|
true |
| 168 |
|
); |
|
@@ 233-240 (lines=8) @@
|
| 230 |
|
|
| 231 |
|
$container->share( |
| 232 |
|
SubmitControllerGet::class, |
| 233 |
|
function (Container $container) |
| 234 |
|
{ |
| 235 |
|
$controller = new SubmitControllerGet; |
| 236 |
|
|
| 237 |
|
$controller->setApplication($container->get(JoomlaApplication\AbstractApplication::class)); |
| 238 |
|
$controller->setInput($container->get(Input::class)); |
| 239 |
|
|
| 240 |
|
return $controller; |
| 241 |
|
}, |
| 242 |
|
true |
| 243 |
|
); |