ILIAS  trunk Revision v12.0_alpha-16-g3e876e53c80
Agent.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
28
29class Agent extends NullAgent
30{
31 public function getUpdateObjective(?Config $config = null): Objective
32 {
33 return new ObjectiveCollection(
34 'Search',
35 false,
37 );
38 }
39
40 public function getBuildObjective(): Objective
41 {
43 }
44}
getBuildObjective()
@inheritdocs
Definition: Agent.php:40
getUpdateObjective(?Config $config=null)
@inheritdocs
Definition: Agent.php:31
An agent that just doesn't do a thing.
Definition: NullAgent.php:35
A objective collection is a objective that is achieved once all subobjectives are achieved.
This class attempt to achieve a set of database update steps.
A configuration for the setup.
Definition: Config.php:27
An objective is a desired state of the system that is supposed to be created by the setup.
Definition: Objective.php:31