Skip to content

Instantly share code, notes, and snippets.

@fayimora
Created May 24, 2016 11:09
Show Gist options
  • Save fayimora/6cba7de3f89213e65847f9af01089316 to your computer and use it in GitHub Desktop.
Save fayimora/6cba7de3f89213e65847f9af01089316 to your computer and use it in GitHub Desktop.
// THIS
$coord = \App\Classes\geoClass::getCoord($request->address1." ".$request->address2, $request->postcode);
// SHOULD BE
$coord = \App\Classes\GeoClass::getCoord($request->address1." ".$request->address2, $request->postcode);
// NOTE: geoClass -> GeoClass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment