| Conditions | 5 |
| Paths | 5 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 5.0729 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 39 | 3 | private function isCommandPropertyValid(JobEntityInterface $oJobEntity) |
|
| 40 | { |
||
| 41 | 3 | if (!$oJobEntity instanceof ChronosJobEntity) { |
|
| 42 | throw new \RuntimeException('Required ChronosJobEntity. Something else found.'); |
||
| 43 | } |
||
| 44 | |||
| 45 | 3 | if (is_null($oJobEntity->container)) |
|
| 46 | 3 | { |
|
| 47 | 3 | return (!empty($oJobEntity->command) && is_string($oJobEntity->command)); |
|
| 48 | } |
||
| 49 | |||
| 50 | 1 | return (empty($oJobEntity->command) || is_string($oJobEntity->command)); |
|
| 51 | } |
||
| 52 | } |