Conditions | 2 |
Paths | 2 |
Total Lines | 19 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | public function showAction($slug) |
||
36 | { |
||
37 | $post = $this->getDoctrine() |
||
38 | ->getRepository('AppBundle:Post') |
||
39 | ->findOneBySlug($slug); |
||
40 | $em = $this->getDoctrine()->getManager(); |
||
|
|||
41 | |||
42 | if (!$post) { |
||
43 | throw $this->createNotFoundException( |
||
44 | 'No post found for slug '.$slug |
||
45 | ); |
||
46 | } |
||
47 | |||
48 | return $this->render( |
||
49 | 'blog/show.html.twig', |
||
50 | ['post' => $post] |
||
51 | ); |
||
52 | |||
53 | } |
||
54 | } |
||
55 |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.