123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- require_once 'phing/ProjectComponent.php';
- require_once 'phing/tasks/system/condition/Condition.php';
- class IsTrueCondition extends ProjectComponent implements Condition {
-
-
- private $value;
-
-
- public function setValue($value) {
- $this->value = $value;
- }
-
-
- public function evaluate() {
- if ($this->value === null) {
- throw new BuildException("Nothing to test for falsehood");
- }
- return $this->value;
- }
- }
|