| 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
$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.