ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullPathConditionsChecker.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
29  {
30  yield from [];
31  }
32 
33  public function allPathConditionsAreMet(StepInterface $step, ElementInterface ...$roots): bool
34  {
35  return false;
36  }
37 
38  public function atLeastOnePathConditionIsMet(StepInterface $step, ElementInterface ...$roots): bool
39  {
40  return false;
41  }
42 
43  public function isPathConditionMet(StepInterface $step, ElementInterface $root): bool
44  {
45  return false;
46  }
47 }
getRootsThatMeetPathCondition(StepInterface $step, ElementInterface ... $roots)
isPathConditionMet(StepInterface $step, ElementInterface $root)
allPathConditionsAreMet(StepInterface $step, ElementInterface ... $roots)
atLeastOnePathConditionIsMet(StepInterface $step, ElementInterface ... $roots)