Skip to content

Commit 7235481

Browse files
committed
Update comments
1 parent 7532f4b commit 7235481

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

api.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1220,6 +1220,12 @@ public static function Flex($altText, $contents)
12201220
}
12211221
}
12221222

1223+
// The classes below is used for creating the object of events with the class `LINEMSG`.
1224+
1225+
/**
1226+
* LINEMSG_QuickReply
1227+
* https://developers.line.biz/en/reference/messaging-api/#items-object
1228+
*/
12231229
class LINEMSG_QuickReply
12241230
{
12251231
public function __construct()
@@ -1319,6 +1325,10 @@ public function actions_out()
13191325
}
13201326
}
13211327

1328+
/**
1329+
* LINEMSG_Imagemap
1330+
* https://developers.line.biz/en/reference/messaging-api/#imagemap-action-objects
1331+
*/
13221332
class LINEMSG_Imagemap
13231333
{
13241334
public function action($type, $url_or_text, $area, $label = null)
@@ -1351,6 +1361,10 @@ public function actionArea($x, $y, $width, $height)
13511361
}
13521362
}
13531363

1364+
/**
1365+
* LINEMSG_Template
1366+
* https://developers.line.biz/en/reference/messaging-api/#common-properties-of-template-message-objects
1367+
*/
13541368
class LINEMSG_Template
13551369
{
13561370
public function __construct($template)
@@ -1487,6 +1501,10 @@ public function actions_out()
14871501
}
14881502
}
14891503

1504+
/**
1505+
* LINEMSG_FlexContainer
1506+
* https://developers.line.biz/en/reference/messaging-api/#container
1507+
*/
14901508
class LINEMSG_FlexContainer
14911509
{
14921510
public function __construct($container)

0 commit comments

Comments
 (0)