| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | 10 | public static function assertSameAsToString($expected, $test_instance) |
|
| 21 | { |
||
| 22 | try { |
||
| 23 | 10 | $actual = (string) $test_instance; |
|
| 24 | 9 | self::assertSame($expected, $actual); |
|
| 25 | 10 | } catch (\PHPUnit_Framework_Error $error) { |
|
| 26 | 1 | throw new \PHPUnit_Framework_ExpectationFailedException("Cannot convert object to string"); |
|
| 27 | } |
||
| 28 | 8 | } |
|
| 29 | |||
| 52 |
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.