Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function process() |
||
25 | { |
||
26 | $formObject = $this->getFormObject(); |
||
27 | |||
28 | if ($formObject->hasForm() |
||
29 | && $formObject->formWasSubmitted() |
||
30 | ) { |
||
31 | $validator = new \Romm\Formz\Validation\Validator\Form\DefaultFormValidator(['name' => $this->getFormObject()->getName()]); |
||
32 | $result = $validator->validate($this->getFormObject()->getForm()); |
||
|
|||
33 | } |
||
34 | } |
||
35 | |||
44 |
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.