Skip to content

Commit f728976

Browse files
committed
added missing method appendText
1 parent e05e00a commit f728976

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/EtherpadLite/Client.php

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
*
3030
* @method Response getText($padID, $rev = null) returns the text of a pad
3131
* @method Response setText($padID, $text) sets the text of a pad
32+
* @method Response appendText($padID, $text) appends text to a pad
3233
* @method Response getHTML($padID, $rev = null) returns the text of a pad formatted as HTML
3334
* @method Response setHTML($padID, $html) sets the html of a pad
3435
* @method Response getAttributePool($padID) returns the attribute pool of a pad
@@ -140,6 +141,7 @@ public static function getMethods()
140141
'listSessionsOfAuthor' => array('authorID'),
141142
'getText' => array('padID', 'rev'),
142143
'setText' => array('padID', 'text'),
144+
'appendText' => array('padID', 'text'),
143145
'getHTML' => array('padID', 'rev'),
144146
'setHTML' => array('padID', 'html'),
145147
'getAttributePool' => array('padID'),

0 commit comments

Comments
 (0)