ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Apps.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\WOPI\Discovery;
22
26class 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