ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Artifacts.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\ResourceStorage;
22 
28 class Artifacts
29 {
30  private array $flavour_machines;
31  private array $flavour_definitions;
32 
33  public function __construct(array $flavour_machines, array $flavour_definitions)
34  {
35  $this->flavour_machines = $flavour_machines;
36  $this->flavour_definitions = $flavour_definitions;
37  }
38 
39  public function getFlavourMachines(): array
40  {
42  }
43 
44  public function getFlavourDefinitions(): array
45  {
47  }
48 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(array $flavour_machines, array $flavour_definitions)
Definition: Artifacts.php:33