Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | protected function getModelMetaBox( |
||
23 | string $modelClass, |
||
24 | int $modelId, |
||
25 | string $lang = AppConstant::DEFAULT_LOCALE |
||
26 | ): ?Model { |
||
27 | /** @var class-string<Model> $modelClass */ |
||
28 | $model = $modelClass::query()->find($modelId); |
||
29 | |||
30 | return $model ? $this->getSEOMetaBoxByModel($model, $lang) : null; |
||
31 | } |
||
47 |