| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function isFulfilled() |
||
| 44 | { |
||
| 45 | if (null === $this->fulfilled) { |
||
| 46 | $this->fulfilled = eval($this->checkIsFulfilled); |
||
|
1 ignored issue
–
show
|
|||
| 47 | } |
||
| 48 | |||
| 49 | return (bool) $this->fulfilled; // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3 |
||
| 50 | } |
||
| 76 |