12 return hash(
"sha256", self::class);
17 return "Fill ini with settings for Services/Database";
27 $common_config = $environment->getConfigFor(
"common");
36 $client_ini = $environment->
getResource(Setup\Environment::RESOURCE_CLIENT_INI);
38 $client_ini->setVariable(
"db",
"type", $this->config->getType());
39 $client_ini->setVariable(
"db",
"host", $this->config->getHost());
40 $client_ini->setVariable(
"db",
"name", $this->config->getDatabase());
41 $client_ini->setVariable(
"db",
"user", $this->config->getUser());
42 $client_ini->setVariable(
"db",
"port", $this->config->getPort() ??
"");
43 $pw = $this->config->getPassword();
44 $client_ini->setVariable(
"db",
"pass", $pw ? $pw->toString() :
"");
46 if (!$client_ini->write()) {
47 throw new Setup\UnachievableException(
"Could not write client.ini.php");
achieve(Setup\Environment $environment)
getPreconditions(Setup\Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
An environment holds resources to be used in the setup process.