| Conditions | 3 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function build(array &$linkDetails, string $linkText, string $target, array $conf): array |
||
| 13 | { |
||
| 14 | if (isset($linkDetails['identifier']) && 'tx_calendarize_domain_model_event' === $linkDetails['identifier']) { |
||
| 15 | $eventId = $linkDetails['uid']; |
||
|
|
|||
| 16 | |||
| 17 | // @todo handle Link Building |
||
| 18 | } |
||
| 19 | |||
| 20 | parent::build($linkDetails, $linkText, $target, $conf); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.