mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-11 01:24:27 +02:00
22 lines
428 B
PHP
22 lines
428 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\Collection\Api\Mastodon;
|
|
|
|
use Friendica\BaseCollection;
|
|
use Friendica\Object\Api\Mastodon\Mention;
|
|
|
|
class Mentions extends BaseCollection
|
|
{
|
|
/**
|
|
* @return Mention
|
|
*/
|
|
public function current(): Mention
|
|
{
|
|
return parent::current();
|
|
}
|
|
}
|