Fixing wrong inherited methodsyntax

This commit is contained in:
Philipp Holzer 2021-11-27 19:58:24 +01:00
parent 6fc2eeaeaf
commit 056702c1e0
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
24 changed files with 25 additions and 25 deletions

View file

@ -68,12 +68,12 @@ class LegacyModule extends BaseModule
require_once $file_path; require_once $file_path;
} }
public function content(array $request = []): string protected function content(array $request = []): string
{ {
return $this->runModuleFunction('content'); return $this->runModuleFunction('content');
} }
public function post(array $request = [], array $post = []) protected function post(array $request = [], array $post = [])
{ {
parent::post($post); parent::post($post);

View file

@ -38,7 +38,7 @@ use Friendica\Network\HTTPException\NotFoundException;
*/ */
class Seen extends BaseApi class Seen extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE); BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -34,7 +34,7 @@ use Friendica\Network\HTTPException\BadRequestException;
*/ */
class Conversation extends BaseApi class Conversation extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -31,7 +31,7 @@ use Friendica\Module\BaseApi;
*/ */
class Filters extends BaseApi class Filters extends BaseApi
{ {
public function post(array $request = [], array $post = []) protected function post(array $request = [], array $post = [])
{ {
self::checkAllowedScope(self::SCOPE_WRITE); self::checkAllowedScope(self::SCOPE_WRITE);

View file

@ -32,7 +32,7 @@ use Friendica\Model\Profile;
*/ */
class UpdateProfile extends BaseApi class UpdateProfile extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE); BaseApi::checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -32,7 +32,7 @@ use Friendica\DI;
*/ */
class VerifyCredentials extends BaseApi class VerifyCredentials extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -31,7 +31,7 @@ use Friendica\Module\BaseApi;
*/ */
class Ids extends ContactEndpoint class Ids extends ContactEndpoint
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
self::checkAllowedScope(self::SCOPE_READ); self::checkAllowedScope(self::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -31,7 +31,7 @@ use Friendica\Module\BaseApi;
*/ */
class Lists extends ContactEndpoint class Lists extends ContactEndpoint
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
self::checkAllowedScope(self::SCOPE_READ); self::checkAllowedScope(self::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -35,7 +35,7 @@ use Friendica\Model\Post;
*/ */
class Favorites extends BaseApi class Favorites extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -31,7 +31,7 @@ use Friendica\Module\BaseApi;
*/ */
class Incoming extends ContactEndpoint class Incoming extends ContactEndpoint
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
self::checkAllowedScope(self::SCOPE_READ); self::checkAllowedScope(self::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -35,7 +35,7 @@ use Friendica\Network\HTTPException\BadRequestException;
*/ */
class Statuses extends BaseApi class Statuses extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -36,7 +36,7 @@ use Friendica\Network\HTTPException\BadRequestException;
*/ */
class Tweets extends BaseApi class Tweets extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -34,7 +34,7 @@ use Friendica\Model\Item;
*/ */
class Destroy extends BaseApi class Destroy extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -35,7 +35,7 @@ use Friendica\Model\Post;
*/ */
class HomeTimeline extends BaseApi class HomeTimeline extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -34,7 +34,7 @@ use Friendica\Model\Post;
*/ */
class Mentions extends BaseApi class Mentions extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -33,7 +33,7 @@ use Friendica\Model\Post;
*/ */
class NetworkPublicTimeline extends BaseApi class NetworkPublicTimeline extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -33,7 +33,7 @@ use Friendica\Model\Post;
*/ */
class PublicTimeline extends BaseApi class PublicTimeline extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -36,7 +36,7 @@ use Friendica\Network\HTTPException\BadRequestException;
*/ */
class Show extends BaseApi class Show extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -35,7 +35,7 @@ use Friendica\Model\Post;
*/ */
class UserTimeline extends BaseApi class UserTimeline extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -32,7 +32,7 @@ use Friendica\Network\HTTPException\NotFoundException;
*/ */
class Lookup extends BaseApi class Lookup extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -35,7 +35,7 @@ use Friendica\Network\HTTPException\NotFoundException;
*/ */
class Search extends BaseApi class Search extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -32,7 +32,7 @@ use Friendica\DI;
*/ */
class Show extends BaseApi class Show extends BaseApi
{ {
public function rawContent() protected function rawContent(array $request = [])
{ {
BaseApi::checkAllowedScope(BaseApi::SCOPE_READ); BaseApi::checkAllowedScope(BaseApi::SCOPE_READ);
$uid = BaseApi::getCurrentUserID(); $uid = BaseApi::getCurrentUserID();

View file

@ -157,7 +157,7 @@ class Contact extends BaseModule
Model\Contact\User::setIgnored($contact_id, local_user(), $ignored); Model\Contact\User::setIgnored($contact_id, local_user(), $ignored);
} }
public function content($update = 0): string protected function content(array $request = []): string
{ {
if (!local_user()) { if (!local_user()) {
return Login::form($_SERVER['REQUEST_URI']); return Login::form($_SERVER['REQUEST_URI']);

View file

@ -32,7 +32,7 @@ use Friendica\Module\BaseApi;
*/ */
class Revoke extends BaseApi class Revoke extends BaseApi
{ {
public function post(array $request = [], array $post = []) protected function post(array $request = [], array $post = [])
{ {
$request = self::getRequest([ $request = self::getRequest([
'client_id' => '', // Client ID, obtained during app registration 'client_id' => '', // Client ID, obtained during app registration