Skip to content

Commit 6ad9fad

Browse files
committed
Update description
1 parent 0b061b0 commit 6ad9fad

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This is a third party SDK for LINE Messaging API that extended more functions fr
1515

1616
As <https://github.com/line/line-bot-sdk-php/issues/163> said, the original version which is created by [LINE Corporation](https://linecorp.com) has no plan to update, so that I created this one.
1717

18-
There is only an `api.php` file for you to include it into your LINE Messaging BOT as easy for someone who don't need the full API if he only wants to make a "Simple" BOT.
18+
There is only an `api.php` file for you to include it into your LINE Messaging BOT as easy for someone who don't need the full API if the one only wants to make a "Simple" BOT.
1919

2020
If you want the official LINE Messaging API for `PHP 7.x`, go to [line-bot-sdk-php](https://github.com/line/line-bot-sdk-php) for getting the full version.
2121

api.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ class LINEAPI
8888
private $channelSecret = null;
8989

9090
/**
91-
* The constant is used for `requestFactory` to set the HTTP Method while transporting.
91+
* The URIs is the host of LINE API Platform.
9292
*
9393
* @var integer API_HOST
9494
* @var integer API_DATA_HOST
@@ -97,7 +97,7 @@ class LINEAPI
9797
public const API_DATA_HOST = "https://api-data.line.me";
9898

9999
/**
100-
* The constant is used for `requestFactory` to set the HTTP Method while transporting.
100+
* The constants is used for `requestFactory` to set the HTTP Method while transporting.
101101
*
102102
* @var integer HTTP_METHOD_GET
103103
* @var integer HTTP_METHOD_POST
@@ -209,7 +209,7 @@ public function getMessageDeliveriesCount($date)
209209
}
210210

211211
/**
212-
* Get number of followers
212+
* Get number of followers.
213213
* https://developers.line.biz/en/reference/messaging-api/#get-number-of-followers
214214
*
215215
* @param string $date
@@ -225,7 +225,7 @@ public function getFollowersCount($date)
225225
}
226226

227227
/**
228-
* Get friend demographics
228+
* Get friend demographics.
229229
* https://developers.line.biz/en/reference/messaging-api/#get-follower-ids
230230
*
231231
* @return object
@@ -239,7 +239,7 @@ public function getFriendDemographics()
239239
}
240240

241241
/**
242-
* Get user interaction statistics
242+
* Get user interaction statistics.
243243
* https://developers.line.biz/en/reference/messaging-api/#get-follower-ids
244244
*
245245
* @param string $requestId
@@ -919,7 +919,7 @@ public function parseEvents()
919919
}
920920

921921
/**
922-
* Signing data via SHA-256
922+
* Signing data via SHA-256.
923923
*
924924
* @param mixed $body
925925
*

0 commit comments

Comments
 (0)