ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
App.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use Symfony\Component\Console\Application;
25
26class App extends Application
27{
28 public const string NAME = 'The ILIAS cron job script';
29
30 public function __construct(Command ...$commands)
31 {
32 parent::__construct(self::NAME);
33 foreach ($commands as $c) {
34 $this->add($c);
35 }
36 }
37}
const string NAME
Definition: App.php:28
__construct(Command ... $commands)
Definition: App.php:30
$c
Definition: deliver.php:25
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc