| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function getMetaBoxBySlugModel(string $model, string $slug, string $lang = 'en'): ?Model |
||
| 22 | { |
||
| 23 | $slugModel = $this->slugService->getSlugModel($slug, $model); |
||
| 24 | |||
| 25 | if ($slugModel) { |
||
| 26 | return $this->getMetaBoxByModel($model, $slugModel->reference_id, $lang); |
||
| 27 | } |
||
| 28 | |||
| 29 | return null; |
||
| 30 | } |
||
| 54 |