Code Duplication    Length = 9-9 lines in 3 locations

src/Providers/ApplicationServiceProvider.php 3 locations

@@ 301-309 (lines=9) @@
298
	 *
299
	 * @since   1.0
300
	 */
301
	public function getHelpCommandService(Container $container)
302
	{
303
		$command = new AppCommands\HelpCommand;
304
305
		$command->setApplication($container->get(JoomlaApplication\AbstractApplication::class));
306
		$command->setInput($container->get(Input::class));
307
308
		return $command;
309
	}
310
311
	/**
312
	 * Get the Input\Cli class service
@@ 461-469 (lines=9) @@
458
	 *
459
	 * @since   1.0
460
	 */
461
	public function getSubmitControllerGetService(Container $container)
462
	{
463
		$controller = new SubmitControllerGet;
464
465
		$controller->setApplication($container->get(JoomlaApplication\AbstractApplication::class));
466
		$controller->setInput($container->get(Input::class));
467
468
		return $controller;
469
	}
470
471
	/**
472
	 * Get the Tags\JoomlaCommand class service
@@ 518-526 (lines=9) @@
515
	 *
516
	 * @since   1.0
517
	 */
518
	public function getUpdateCommandService(Container $container)
519
	{
520
		$command = new AppCommands\UpdateCommand;
521
522
		$command->setApplication($container->get(JoomlaApplication\AbstractApplication::class));
523
		$command->setInput($container->get(Input::class));
524
525
		return $command;
526
	}
527
528
	/**
529
	 * Get the web application service