| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | protected function getPayload($message, $channel) |
||
| 39 | { |
||
| 40 | $payload = []; |
||
| 41 | |||
| 42 | if (!is_null($this->iconUrl)) { |
||
| 43 | $payload['icon_url'] = $this->iconUrl; |
||
| 44 | } |
||
| 45 | |||
| 46 | $payload['text'] = $message; |
||
| 47 | $payload['channel'] = $channel; |
||
| 48 | $payload['username'] = $this->username; |
||
| 49 | |||
| 50 | return $payload; |
||
| 51 | } |
||
| 52 | } |
||
| 53 |
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.