Remove unneeded functions

This commit is contained in:
Michael 2023-10-05 09:25:23 +00:00
parent 6a86eeda10
commit aae5f006f9
3 changed files with 2 additions and 58 deletions

View file

@ -35,23 +35,6 @@ final class Network extends Timeline
parent::__construct($channel, $l10n, $logger, $config);
}
public function createFromTableRow(array $row): NetworkEntity
{
return new NetworkEntity(
$row['id'] ?? null,
$row['label'],
$row['description'] ?? null,
$row['access-key'] ?? null,
null,
$row['uid'],
$row['include-tags'] ?? null,
$row['exclude-tags'] ?? null,
$row['full-text-search'] ?? null,
$row['media-type'] ?? null,
$row['circle'] ?? null,
);
}
/**
* List of available network timelines
*