19 declare(strict_types=1);
40 return "Switch client names for export/import";
59 $old_name = $this->path . DIRECTORY_SEPARATOR .
$client_id;
60 $new_name = $this->path . DIRECTORY_SEPARATOR . self::DEFAULT_CLIENT_ID;
62 if ($environment->
hasConfigFor(InstallCommand::IMPORT)) {
63 $old_name = $this->path . DIRECTORY_SEPARATOR . self::DEFAULT_CLIENT_ID;
64 $new_name = $this->path . DIRECTORY_SEPARATOR .
$client_id;
67 rename($old_name, $new_name);
An objective is a desired state of the system that is supposed to be created by the setup...
getHash()
Get a hash for this objective.
getLabel()
Get a label that describes this objective.
getPreconditions(Environment $environment)
Objectives might depend on other objectives.
isNotable()
Get to know if this is an interesting objective for a human.
achieve(Environment $environment)
Objectives can be achieved.
isApplicable(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.
hasConfigFor(string $component)
__construct(protected string $path)