| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); defined('BASEPATH') or exit('No direct script access allowed'); |
||
| 9 | protected function inlineLink($excerpt) { |
||
| 10 | $link = parent::inlineLink($excerpt); |
||
| 11 | |||
| 12 | if(!isset($link)) { |
||
| 13 | return null; |
||
| 14 | } |
||
| 15 | |||
| 16 | //Make title attribute the same as link |
||
| 17 | $link['element']['attributes']['title'] = $link['element']['attributes']['href']; |
||
| 18 | |||
| 19 | return $link; |
||
| 20 | } |
||
| 21 | } |
||
| 22 |