Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
88 | private function throwRuntimeExceptionIfNotAllMandatoryPropertiesAreSet() |
||
89 | { |
||
90 | if (is_null($this->name)) { |
||
91 | throw new RuntimeException('mandatory property >>name<< not provided'); |
||
92 | } |
||
93 | |||
94 | if (is_null($this->source)) { |
||
95 | throw new RuntimeException('mandatory property >>source<< not provided'); |
||
96 | } |
||
97 | |||
98 | if (is_null($this->subject)) { |
||
99 | throw new RuntimeException('mandatory property >>subject<< not provided'); |
||
100 | } |
||
101 | } |
||
102 | } |
||
103 |