| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 8 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | View Code Duplication | protected function findModel($modelClass, $condition, string $notFoundMessage = 'The requested page does not exist.') |
|
| 29 | { |
||
| 30 | if (($model = $modelClass::findOne($condition)) !== null) { |
||
| 31 | return $model; |
||
| 32 | } else { |
||
| 33 | throw new NotFoundHttpException($notFoundMessage); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 52 |