| Conditions | 4 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | protected function assertMandatoryProperties(array $propertyNames = array('instance')) |
||
| 51 | { |
||
| 52 | foreach ($propertyNames as $propertyName) { |
||
| 53 | if (!isset($this->$propertyName) |
||
| 54 | || (is_null($this->$propertyName))) { |
||
| 55 | throw new RuntimeException( |
||
| 56 | 'property "' . $propertyName . '" is mandatory' |
||
| 57 | ); |
||
| 58 | } |
||
| 59 | } |
||
| 60 | } |
||
| 61 | } |