1 | <?php |
||
7 | class LineNotify { |
||
8 | |||
9 | const API_URL = 'https://notify-api.line.me/api/notify'; |
||
10 | |||
11 | private $token = null; |
||
12 | private $http = null; |
||
13 | |||
14 | public function __construct($token) { |
||
19 | |||
20 | public function setToken($token) { |
||
23 | |||
24 | public function getToken() { |
||
27 | |||
28 | public function send($text, $imagePath = null) { |
||
69 | |||
70 | } |
||
71 |