| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function validate(): bool |
||
| 20 | { |
||
| 21 | Expect::that($this->attributes)->itsArrayElement('SRC')->isString()->isNotEmpty(); |
||
| 22 | Expect::that($this->attributes)->itsArrayElement('TIMEOUT')->isUndefinedOrFloat(); |
||
| 23 | if (isset($this->attributes['TIMEOUT'])) { |
||
| 24 | Expect::that($this->attributes)->itsArrayElement('TIMEOUT')->isFloat()->isGreaterThan(0); |
||
| 25 | } |
||
| 26 | |||
| 27 | return true; |
||
| 28 | } |
||
| 29 | } |