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