| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 63 | public function prepForRender(&$data): bool |
||
| 64 | { |
||
| 65 | $shouldRender = parent::prepForRender($data); |
||
| 66 | if ($shouldRender) { |
||
| 67 | if (!empty($data['content'])) { |
||
| 68 | $data['content'] = LocalizationHelper::normalizeOgLocaleLanguage($data['content']); |
||
| 69 | } |
||
| 70 | } |
||
| 71 | |||
| 72 | return $shouldRender; |
||
| 73 | } |
||
| 75 |