Code standards

This commit is contained in:
Michael 2020-12-05 21:58:15 +00:00
parent 2b8adf5073
commit 878a418c6b
1 changed files with 4 additions and 2 deletions

View File

@ -29,8 +29,10 @@ use Friendica\Model\Photo;
/**
* Removes public contacts that aren't in use
*/
class RemoveUnusedContacts {
public static function execute() {
class RemoveUnusedContacts
{
public static function execute()
{
$condition = ["`uid` = ? AND NOT `self` AND NOT `nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` != ?)
AND (NOT `network` IN (?, ?, ?, ?, ?, ?) OR (`archive` AND `success_update` < UTC_TIMESTAMP() - INTERVAL ? DAY))
AND NOT `id` IN (SELECT `author-id` FROM `item`) AND NOT `id` IN (SELECT `owner-id` FROM `item`)