19 declare(strict_types=1);
37 return hash(
"sha256", self::class);
42 return "Fill ini with settings for Services/Logging";
63 if ($this->config->getPathToLogfile()) {
64 $logPath = dirname($this->config->getPathToLogfile());
65 $logFile = basename($this->config->getPathToLogfile());
68 $ini->setVariable(
"log",
"enabled", $this->config->isEnabled() ?
"1" :
"0");
69 $ini->setVariable(
"log",
"path", $logPath);
70 $ini->setVariable(
"log",
"file", $logFile);
74 $this->config->getErrorlogDir() ??
'' 90 $enabled = $this->config->isEnabled() ?
"1" :
"0";
94 if ($this->config->getPathToLogfile()) {
95 $logPath = dirname($this->config->getPathToLogfile());
96 $logFile = basename($this->config->getPathToLogfile());
100 $ini->readVariable(
"log",
"path") !== $logPath ||
101 $ini->readVariable(
"log",
"file") !== $logFile ||
102 $ini->readVariable(
"log",
"error_path") !== $this->config->getErrorlogDir() ||
103 $ini->readVariable(
"log",
"enabled") !== $enabled
isApplicable(Environment $environment)
An objective is a desired state of the system that is supposed to be created by the setup...
isNotable()
Get to know if this is an interesting objective for a human.
Signals that some goal won't be achievable by actions of the system ever.
__construct(Config $config)
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
getHash()
Get a hash for this objective.
An environment holds resources to be used in the setup process.
A configuration for the setup.
getLabel()
Get a label that describes this objective.
achieve(Environment $environment)
Objectives can be achieved.