ILIAS  trunk Revision v11.0_alpha-1731-gff9cd7e2bd3
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Apps.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 class Apps
27 {
31  public function __construct(private array $apps)
32  {
33  }
34 
38  public function getApps(): array
39  {
40  return $this->apps;
41  }
42 }
__construct(private array $apps)
Definition: Apps.php:31