1 | <?php |
||
3 | class RedoGetLatLngFromGoogleUsingAddressTask extends BuildTask |
||
4 | { |
||
5 | protected $title = "Re-attempt to convert address into google map co-ordinates"; |
||
6 | |||
7 | protected $description = "Runs through all the failed GetLatLngFromGoogleUsingAddress"; |
||
8 | |||
9 | /** |
||
10 | * @var boolean |
||
11 | */ |
||
12 | protected $verbose = true; |
||
13 | |||
14 | /** |
||
15 | * @param boolean |
||
16 | */ |
||
17 | public function setVerbose($b) |
||
21 | |||
22 | private $step = 100; |
||
23 | |||
24 | public function run($request) |
||
75 | } |
||
76 |
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.