From 14141af1d44f12f9b564367f58f3361eff77c90b Mon Sep 17 00:00:00 2001 From: Nick Tsai Date: Sat, 18 Aug 2018 15:27:28 +0800 Subject: [PATCH] Release version 1.0.0 --- src/Client.php | 6 ++++++ src/Directions.php | 4 +++- src/DistanceMatrix.php | 2 ++ src/Elevation.php | 2 ++ src/Geocoding.php | 2 ++ src/Geolocation.php | 2 ++ src/Service.php | 6 ++++++ src/Timezone.php | 2 ++ 8 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 8f66889..5ac4666 100644 --- a/src/Client.php +++ b/src/Client.php @@ -5,6 +5,12 @@ use Exception; use GuzzleHttp\Client as HttpClient; +/** + * Google Maps PHP Client + * + * @author Nick Tsai + * @version 1.0.0 + */ class Client { /** diff --git a/src/Directions.php b/src/Directions.php index a3aac07..4940f91 100644 --- a/src/Directions.php +++ b/src/Directions.php @@ -8,7 +8,9 @@ /** * Directions Service * - * @see https://developers.google.com/maps/documentation/directions/ + * @author Nick Tsai + * @since 1.0.0 + * @see https://developers.google.com/maps/documentation/directions/ */ class Directions extends Service { diff --git a/src/DistanceMatrix.php b/src/DistanceMatrix.php index 8e9036c..27c4281 100644 --- a/src/DistanceMatrix.php +++ b/src/DistanceMatrix.php @@ -8,6 +8,8 @@ /** * Directions Service * + * @author Nick Tsai + * @since 1.0.0 * @see https://developers.google.com/maps/documentation/distance-matrix/ */ class DistanceMatrix extends Service diff --git a/src/Elevation.php b/src/Elevation.php index 1b22ad4..cca8b94 100644 --- a/src/Elevation.php +++ b/src/Elevation.php @@ -8,6 +8,8 @@ /** * Directions Service * + * @author Nick Tsai + * @since 1.0.0 * @see https://developers.google.com/maps/documentation/elevation/ */ class Elevation extends Service diff --git a/src/Geocoding.php b/src/Geocoding.php index e5ce774..f7e0252 100644 --- a/src/Geocoding.php +++ b/src/Geocoding.php @@ -8,6 +8,8 @@ /** * Geocoding Service * + * @author Nick Tsai + * @since 1.0.0 * @see https://developers.google.com/maps/documentation/geocoding/ */ class Geocoding extends Service diff --git a/src/Geolocation.php b/src/Geolocation.php index 3a5e52b..16265ab 100644 --- a/src/Geolocation.php +++ b/src/Geolocation.php @@ -8,6 +8,8 @@ /** * Directions Service * + * @author Nick Tsai + * @since 1.0.0 * @see https://developers.google.com/maps/documentation/geolocation/ */ class Geolocation extends Service diff --git a/src/Service.php b/src/Service.php index 2e00dbd..4d37ec4 100644 --- a/src/Service.php +++ b/src/Service.php @@ -2,6 +2,12 @@ namespace yidas\googleMaps; +/** + * Google Maps Abstract Service + * + * @author Nick Tsai + * @since 1.0.0 + */ abstract class Service { /** diff --git a/src/Timezone.php b/src/Timezone.php index a9cba40..4be9975 100644 --- a/src/Timezone.php +++ b/src/Timezone.php @@ -8,6 +8,8 @@ /** * Directions Service * + * @author Nick Tsai + * @since 1.0.0 * @see https://developers.google.com/maps/documentation/timezone/ */ class Timezone extends Service