1 | <?php |
||
10 | class remote_plugin_testing_manual extends RemotePlugin |
||
11 | { |
||
12 | /** @inheritdoc */ |
||
13 | function _getMethods() |
||
43 | |||
44 | /** @inheritdoc */ |
||
45 | function method1() |
||
49 | |||
50 | /** @inheritdoc */ |
||
51 | function methodString() |
||
55 | |||
56 | /** @inheritdoc */ |
||
57 | function method2($str, $int, $bool = false) |
||
61 | |||
62 | /** @inheritdoc */ |
||
63 | function publicCall() |
||
67 | } |
||
68 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.