31 if (!isset($this->resources[$id])) {
34 return $this->resources[$id];
42 if (isset($this->resources[$id])) {
43 throw new \RuntimeException(
44 "Resource '$id' is already contained in the environment" 48 $clone->resources[$id] = $resource;
57 if (isset($this->configs[$component])) {
58 throw new \RuntimeException(
59 "Config for '$component' is already contained in the environment" 63 $clone->configs[$component] =
$config;
72 if (!isset($this->configs[$component])) {
73 throw new \RuntimeException(
74 "Config for '$component' is not contained in the environment" 77 return $this->configs[$component];
withResource(string $id, $resource)
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...
__construct(array $resources)
An environment holds resources to be used in the setup process.