| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function attributeMissing() |
||
| 32 | { |
||
| 33 | $requiredAttributes = $this->getRequiredAttributes(); |
||
| 34 | |||
| 35 | foreach ($requiredAttributes as $requiredAttribute) { |
||
| 36 | if ($this->$requiredAttribute === null) { |
||
| 37 | throw new MissingRequiredAttributeException("The {$requiredAttribute} is missing"); |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | return true; |
||
| 42 | } |
||
| 44 |