| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 15 | public function __construct($dependantId, $dependsOnId, $isEnforced) |
|
| 30 | { |
||
| 31 | 15 | Guard::againstNullAndEmpty('dependantId', $dependantId); |
|
| 32 | 14 | Guard::againstNullAndEmpty('dependsOnId', $dependsOnId); |
|
| 33 | |||
| 34 | 13 | $this->dependantId = $dependantId; |
|
| 35 | 13 | $this->dependsOnId = $dependsOnId; |
|
| 36 | 13 | $this->isEnforced = $isEnforced; |
|
| 37 | 13 | } |
|
| 38 | |||
| 63 |