ILIAS  release_8 Revision v8.24
App.php
Go to the documentation of this file.
1<?php
2
3 declare(strict_types=1);
4
21namespace ILIAS\Setup\CLI;
22
23use Symfony\Component\Console\Application;
24use Symfony\Component\Console\Command\Command;
25
31class App extends Application
32{
33 public const NAME = "The ILIAS Setup";
34
35 public function __construct(Command ...$commands)
36 {
37 parent::__construct(self::NAME);
38 foreach ($commands as $c) {
39 $this->add($c);
40 }
41 }
42}
The ILIAS-setup-console-application.
Definition: App.php:32
__construct(Command ... $commands)
Definition: App.php:35
$c
Definition: cli.php:38
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...