-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLessOrEqual.php
More file actions
39 lines (32 loc) · 838 Bytes
/
LessOrEqual.php
File metadata and controls
39 lines (32 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
namespace Ezweb\Workflow\Elements\Operators;
class LessOrEqual extends Operator
{
public static function getName(): string
{
return 'lessOrEqual';
}
protected function getResult(array $vars, array $childrenValues)
{
return $childrenValues[0] <= $childrenValues[1];
}
public function getJSONData(): array
{
return [
'type' => self::getName(),
'value' => $this->getOperands()
];
}
public function __toString(): string
{
return implode(' <= ', $this->getOperands());
}
protected function isValid(array $vars, array $childrenValues): bool
{
// we must have 2 operands for this operator
if (count($this->getOperands()) !== 2) {
return false;
}
return true;
}
}