ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
NullObjective.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Setup\Objective;
22 
23 use ILIAS\Setup;
24 
29 {
30  public const LABEL = "Nothing to do.";
31 
32  public function getHash(): string
33  {
34  return "null-objective";
35  }
36 
37  public function getLabel(): string
38  {
39  return self::LABEL;
40  }
41 
42  public function isNotable(): bool
43  {
44  return false;
45  }
46 
47  /*
48  * @inheritdocs
49  */
50  public function getPreconditions(Setup\Environment $environment): array
51  {
52  return [];
53  }
54 
58  public function achieve(Setup\Environment $environment): Setup\Environment
59  {
60  return $environment;
61  }
62 
66  public function isApplicable(Setup\Environment $environment): bool
67  {
68  return false;
69  }
70 }
An objective is a desired state of the system that is supposed to be created by the setup...
Definition: Objective.php:30
getLabel()
Get a label that describes this objective.
getPreconditions(Setup\Environment $environment)
isApplicable(Setup\Environment $environment)
A non-objective, nothing to do to achieve it...
getHash()
Get a hash for this objective.
isNotable()
Get to know if this is an interesting objective for a human.
achieve(Setup\Environment $environment)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
An environment holds resources to be used in the setup process.
Definition: Environment.php:27