| Conditions | 4 |
| Paths | 6 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | protected function checkForChanges(): bool |
||
| 52 | { |
||
| 53 | $hasChanges = false; |
||
| 54 | foreach($this->data as $data){ |
||
| 55 | if($data['changed']){ |
||
| 56 | $hasChanges = true; |
||
| 57 | } |
||
| 58 | } |
||
| 59 | if(!$hasChanges){ |
||
| 60 | throw new DatamanagerException('There were no changes to be saved in the database.'); |
||
| 61 | } |
||
| 62 | return true; |
||
| 63 | } |
||
| 65 |