mirror of
https://github.com/friendica/friendica
synced 2025-04-24 07:10:11 +00:00
Changes:
- renamed ItemArrayFromMail() to getItemArrayFromMail() to follow naming-convetion - added missing type-hints - added missing documentation
This commit is contained in:
parent
ea22e88896
commit
fbae0b8bcf
5 changed files with 118 additions and 127 deletions
|
@ -1297,8 +1297,8 @@ class Processor
|
|||
/**
|
||||
* Transmit pending events to the new follower
|
||||
*
|
||||
* @param integer $cid
|
||||
* @param integer $uid
|
||||
* @param integer $cid Contact id
|
||||
* @param integer $uid User id
|
||||
* @return void
|
||||
*/
|
||||
private static function transmitPendingEvents(int $cid, int $uid)
|
||||
|
@ -1341,6 +1341,7 @@ class Processor
|
|||
* Delete the given profile
|
||||
*
|
||||
* @param array $activity
|
||||
* @return void
|
||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||
*/
|
||||
public static function deletePerson(array $activity)
|
||||
|
@ -1368,6 +1369,7 @@ class Processor
|
|||
* Blocks the user by the contact
|
||||
*
|
||||
* @param array $activity
|
||||
* @return void
|
||||
* @throws \Exception
|
||||
*/
|
||||
public static function blockAccount(array $activity)
|
||||
|
@ -1391,6 +1393,7 @@ class Processor
|
|||
* Unblocks the user by the contact
|
||||
*
|
||||
* @param array $activity
|
||||
* @return void
|
||||
* @throws \Exception
|
||||
*/
|
||||
public static function unblockAccount(array $activity)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue