ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullPathConditionsChecker.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
27{
28 public function getRootsThatMeetPathCondition(StepInterface $step, ElementInterface ...$roots): \Generator
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}
allPathConditionsAreMet(StepInterface $step, ElementInterface ... $roots)
atLeastOnePathConditionIsMet(StepInterface $step, ElementInterface ... $roots)
getRootsThatMeetPathCondition(StepInterface $step, ElementInterface ... $roots)
isPathConditionMet(StepInterface $step, ElementInterface $root)