ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ArrayEnvironment.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 namespace ILIAS\Setup;
6 
7 use ILIAS\Setup;
8 
9 class ArrayEnvironment implements Environment
10 {
14  protected $resources;
15 
19  protected $configs;
20 
21  public function __construct(array $resources)
22  {
23  $this->resources = $resources;
24  }
25 
29  public function getResource(string $id)
30  {
31  if (!isset($this->resources[$id])) {
32  return null;
33  }
34  return $this->resources[$id];
35  }
36 
40  public function withResource(string $id, $resource) : Environment
41  {
42  if (isset($this->resources[$id])) {
43  throw new \RuntimeException(
44  "Resource '$id' is already contained in the environment"
45  );
46  }
47  $clone = clone $this;
48  $clone->resources[$id] = $resource;
49  return $clone;
50  }
51 
55  public function withConfigFor(string $component, $config) : Environment
56  {
57  if (isset($this->configs[$component])) {
58  throw new \RuntimeException(
59  "Config for '$component' is already contained in the environment"
60  );
61  }
62  $clone = clone $this;
63  $clone->configs[$component] = $config;
64  return $clone;
65  }
66 
70  public function getConfigFor(string $component)
71  {
72  if (!isset($this->configs[$component])) {
73  throw new \RuntimeException(
74  "Config for '$component' is not contained in the environment"
75  );
76  }
77  return $this->configs[$component];
78  }
79 }
withResource(string $id, $resource)
if(!array_key_exists('PATH_INFO', $_SERVER)) $config
Definition: metadata.php:68
getConfigFor(string $component)
withConfigFor(string $component, $config)
Stores a config for some component in the environment.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.implements some known in...
An environment holds resources to be used in the setup process.
Definition: Environment.php:11