xref: /dokuwiki/lib/plugins/remote.php (revision eb20307ad68614b8834c804eeade389967db5ed4)
1<?php
2
3abstract class DokuWiki_Remote_Plugin extends DokuWiki_Plugin {
4
5    /**
6     * @abstract
7     * @return array Information to all provided methods. {@see RemoteAPI}.
8     */
9    public abstract function _getMethods();
10
11}
12