Description
The right syntax of the below line in classes/Geocoder.php(36)
throw new Exception('Did not find xml part in: $stream');
should be
throw new Exception("Did not find xml part in: $stream");
Note that ", instead of '. Otherwise, $stream should not be printed out.