mirror of
https://github.com/friendica/friendica
synced 2025-04-22 16:30:11 +00:00
Fixing wrong inherited methodsyntax
This commit is contained in:
parent
6fc2eeaeaf
commit
056702c1e0
24 changed files with 25 additions and 25 deletions
|
@ -68,12 +68,12 @@ class LegacyModule extends BaseModule
|
|||
require_once $file_path;
|
||||
}
|
||||
|
||||
public function content(array $request = []): string
|
||||
protected function content(array $request = []): string
|
||||
{
|
||||
return $this->runModuleFunction('content');
|
||||
}
|
||||
|
||||
public function post(array $request = [], array $post = [])
|
||||
protected function post(array $request = [], array $post = [])
|
||||
{
|
||||
parent::post($post);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue