ILIAS  release_8 Revision v8.23
App.php
Go to the documentation of this file.
1 <?php
2 
3  declare(strict_types=1);
4 
21 namespace ILIAS\Setup\CLI;
22 
25 
31 class 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:31
$c
Definition: cli.php:38
__construct(Command ... $commands)
Definition: App.php:35
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)