mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 08:14:25 +02:00
18 lines
400 B
PHP
18 lines
400 B
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Content\Conversation\Collection;
|
|
|
|
use Friendica\Content\Conversation\Entity;
|
|
|
|
class UserDefinedChannels extends Timelines
|
|
{
|
|
public function current(): Entity\UserDefinedChannel
|
|
{
|
|
return parent::current();
|
|
}
|
|
}
|