It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
16
return AUTH_NONE;
17
}
18
19
/**
20
* Outputs nothing but a warning unless an action plugin overwrites it
21
*
22
* @inheritdoc
23
* @triggers TPL_ACT_UNKNOWN
24
*/
25
public function tplContent() {
26
$evt = new \Doku_Event('TPL_ACT_UNKNOWN', $this->actionname);
27
if($evt->advise_before()) {
28
msg('Failed to handle action: ' . hsc($this->actionname), -1);
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.