Skip to content

Commit

Permalink
Whitespace cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jen Lampton committed Dec 12, 2018
1 parent f0f1dd7 commit 3b63802
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 18 deletions.
6 changes: 5 additions & 1 deletion geocoder.drush.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<?php
/**
* @file
* Drush commands.
*/

/**
* Implementation of hook_drush_command().
Expand Down Expand Up @@ -61,4 +65,4 @@ function geocoder_drush_backfill() {
}
}
}
}
}
3 changes: 2 additions & 1 deletion geocoder.info
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
type = module
name = Geocoder
description = An API and widget to geocode various known data into other GIS data types.
backdrop = 1.x
type = module
dependencies[] = geophp

configure = admin/config/content/geocoder
1 change: 0 additions & 1 deletion geocoder.install
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Install, update and uninstall functions for the Geocoder module.
Expand Down
1 change: 0 additions & 1 deletion geocoder.module
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Module file for geocoder module.
Expand Down
5 changes: 5 additions & 0 deletions geocoder.services.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @file
* Services.
*/

/**
* Implements hook_services_resources().
*/
Expand Down
2 changes: 0 additions & 2 deletions plugins/geocoder_handler/bing.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
// $Id$

/**
* @file
* Plugin to provide a bing geocoder.
Expand Down
4 changes: 4 additions & 0 deletions plugins/geocoder_handler/exif.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<?php
/**
* @file
* Plugin for EXIF.
*/

$plugin = array(
'title' => t("Image/exif"),
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/gpx.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
*
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/json.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a google geocoder.
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/kml.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a kml geocoder.
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/latlon.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
*/
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/mapbox.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a Mapbox geocoder.
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/mapquest_nominatim.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a MapQuest Nominatim geocoder.
Expand Down
2 changes: 0 additions & 2 deletions plugins/geocoder_handler/openstreetmap_nominatim.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php
// $Id$

/**
* @file
* Plugin to provide a OpenStreetMap Nominatim geocoder.
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/wkt.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a WKT geocoder.
Expand Down
1 change: 0 additions & 1 deletion plugins/geocoder_handler/yahoo.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a yahoo geocoder.
Expand Down
3 changes: 1 addition & 2 deletions plugins/geocoder_handler/yandex.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

/**
* @file
* Plugin to provide a yandex geocoder.
Expand Down Expand Up @@ -80,4 +79,4 @@ function _geocoder_yandex_geometry(&$data) {

$loc = explode(' ', $data->response->GeoObjectCollection->featureMember[0]->GeoObject->Point->pos);
return new Point ($loc[0], $loc[1]);
}
}

0 comments on commit 3b63802

Please sign in to comment.