ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
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
__construct(VocabulariesInterface $vocabularies)
__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...