Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yidas committed Aug 18, 2018
1 parent a64cb9d commit 14141af
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
use Exception;
use GuzzleHttp\Client as HttpClient;

/**
* Google Maps PHP Client
*
* @author Nick Tsai <myintaer@gmail.com>
* @version 1.0.0
*/
class Client
{
/**
Expand Down
4 changes: 3 additions & 1 deletion src/Directions.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
/**
* Directions Service
*
* @see https://developers.google.com/maps/documentation/directions/
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
* @see https://developers.google.com/maps/documentation/directions/
*/
class Directions extends Service
{
Expand Down
2 changes: 2 additions & 0 deletions src/DistanceMatrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
/**
* Directions Service
*
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
* @see https://developers.google.com/maps/documentation/distance-matrix/
*/
class DistanceMatrix extends Service
Expand Down
2 changes: 2 additions & 0 deletions src/Elevation.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
/**
* Directions Service
*
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
* @see https://developers.google.com/maps/documentation/elevation/
*/
class Elevation extends Service
Expand Down
2 changes: 2 additions & 0 deletions src/Geocoding.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
/**
* Geocoding Service
*
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
* @see https://developers.google.com/maps/documentation/geocoding/
*/
class Geocoding extends Service
Expand Down
2 changes: 2 additions & 0 deletions src/Geolocation.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
/**
* Directions Service
*
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
* @see https://developers.google.com/maps/documentation/geolocation/
*/
class Geolocation extends Service
Expand Down
6 changes: 6 additions & 0 deletions src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

namespace yidas\googleMaps;

/**
* Google Maps Abstract Service
*
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
*/
abstract class Service
{
/**
Expand Down
2 changes: 2 additions & 0 deletions src/Timezone.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
/**
* Directions Service
*
* @author Nick Tsai <myintaer@gmail.com>
* @since 1.0.0
* @see https://developers.google.com/maps/documentation/timezone/
*/
class Timezone extends Service
Expand Down

0 comments on commit 14141af

Please sign in to comment.